Skip to content

Instantly share code, notes, and snippets.

@Hameds
Created November 2, 2017 10:53
Show Gist options
  • Save Hameds/db5b261bad18a83dcd5e561636f2f764 to your computer and use it in GitHub Desktop.
Save Hameds/db5b261bad18a83dcd5e561636f2f764 to your computer and use it in GitHub Desktop.
namespace TddStore.Core
{
public class OrderService
{
private IOrderDataService _orderDataService;
private ICustomerService _customerService;
private IOrderFulfillmentService _orderFulfillmentService;
private const string USERNAME = "Bob";
private const string PASSWORD = "Foo";
public OrderService(IOrderDataService orderDataService, ICustomerService customerService, 
IOrderFulfillmentService orderFulfillmentService)
{
_orderDataService = orderDataService;
_customerService = customerService;
_orderFulfillmentService = orderFulfillmentService;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment