Created
November 2, 2017 10:36
-
-
Save Hameds/692b7c41f82a6ad1f2cb9486851ae3d5 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 customer = _customerService.GetCustomer(customerId); | |
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