Skip to content

Instantly share code, notes, and snippets.

@Hameds
Created November 2, 2017 10:36
Show Gist options
  • Save Hameds/692b7c41f82a6ad1f2cb9486851ae3d5 to your computer and use it in GitHub Desktop.
Save Hameds/692b7c41f82a6ad1f2cb9486851ae3d5 to your computer and use it in GitHub Desktop.
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