Skip to content

Instantly share code, notes, and snippets.

@Hameds
Created November 2, 2017 09:55
Show Gist options
  • Select an option

  • Save Hameds/c449d4a51b8674a7540f514efdfc52d4 to your computer and use it in GitHub Desktop.

Select an option

Save Hameds/c449d4a51b8674a7540f514efdfc52d4 to your computer and use it in GitHub Desktop.
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