Skip to content

Instantly share code, notes, and snippets.

@Hameds
Created November 2, 2017 10:03
Show Gist options
  • Save Hameds/63f92e503832df0a216472e0a89ae9e3 to your computer and use it in GitHub Desktop.
Save Hameds/63f92e503832df0a216472e0a89ae9e3 to your computer and use it in GitHub Desktop.
public Guid PlaceOrder(Guid customerId, ShoppingCart shoppingCart)
{
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