Created
November 2, 2017 10:14
-
-
Save Hameds/72356d79e7ad78bb19080bb4fa07ee0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public Guid PlaceOrder(Guid customerId, ShoppingCart shoppingCart) | |
| { | |
| foreach (var item in shoppingCart.Items) | |
| { | |
| if (item.Quantity == 0) | |
| { | |
| throw new InvalidOrderException(); | |
| } | |
| } | |
| var order = new Order(); | |
| return _orderDataService.Save(order); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment