I hereby claim:
- I am copypastedeveloper on github.
- I am nathangonzalez (https://keybase.io/nathangonzalez) on keybase.
- I have a public key ASAqxDV_Pj3vcbDdvcAniwDezySH6fRwy6za2P3qAUS9owo
To claim this, I am signing this object:
| public class Customer | |
| { | |
| public decimal AccountBalance { get; set; } | |
| public List<Orders> Orders { get; set; } | |
| public string Name { get; set; } | |
| public void AddMoney(decimal amountToAdd) | |
| { | |
| AccountBalance += amountToAdd | |
| } |
| public class Customer : DomainEntity | |
| { | |
| public decimal AccountBalance { get; private set; } | |
| public IReadOnlyList<Orders> Orders { get { return _orders.ToReadOnlyList();} } | |
| public string Name { get; private set; } | |
| protected Customer() {} | |
| public Customer(string name, decimal openingBalance) | |
| { |
| [Story(AsA = "car manufacturer", | |
| IWant = "a factory that makes the right cars", | |
| SoThat = "I can make money")] | |
| public class building_a_toyota : Scenario | |
| { | |
| static CarFactory _factory; | |
| static Car _car; | |
| given a_car_factory = () => | |
| { |
| public class EventUpconverter<TSource, TDestination> : IUpconvertEvents<TSource, TDestination> | |
| where TSource : class,IEvent | |
| where TDestination : class,IEvent | |
| { | |
| readonly IMappingEngine _mapper; | |
| public EventUpconverter(IMappingEngine mapper) | |
| { | |
| _mapper = mapper; | |
| } |
| public class TransactionalInvoker : IEnlistmentNotification | |
| { | |
| bool _inTransaction; | |
| readonly List<Action> _commitActions = new List<Action>(); | |
| public void Invoke(Action action) | |
| { | |
| if (_inTransaction) | |
| { | |
| _commitActions.Add(action); |
| <Response> | |
| <Speak>Hello, welcome to the Jungle!</Speak> | |
| </Response> |
I hereby claim:
To claim this, I am signing this object:
Scaffold your application in Visual Studio:
In the Index.cshtml in your Views/Home/ folder (correlates to the Home Controller):
As a mediocre superbowl naming person
I want an application that will translate numbers into roman numerals
So that I don't make a mistake when naming all of the superbowls.
| Number | Roman Numeral |
|---|---|
| 1 | I |
| 5 | V |