Skip to content

Instantly share code, notes, and snippets.

@JamesBender
Created October 2, 2013 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JamesBender/6793461 to your computer and use it in GitHub Desktop.
Save JamesBender/6793461 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