Created
November 2, 2017 10:03
-
-
Save Hameds/63f92e503832df0a216472e0a89ae9e3 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) | |
{ | |
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