Created
November 2, 2017 09:55
-
-
Save Hameds/c449d4a51b8674a7540f514efdfc52d4 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
| using System; | |
| namespace TddStore.Core | |
| { | |
| public class OrderService | |
| { | |
| private IOrderDataService _orderDataService; | |
| public OrderService(IOrderDataService orderDataService) | |
| { | |
| _orderDataService = orderDataService; | |
| } | |
| public object PlaceOrder(Guid customerId, ShoppingCart shoppingCart) | |
| { | |
| // TODO: Implement this method | |
| throw new NotImplementedException(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment