Guest User

Untitled

a guest
Nov 5th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. namespace TddStore.Core
  2. {
  3. public class OrderService
  4. {
  5. private IOrderDataService _orderDataService;
  6. private ICustomerService _customerService;
  7. private IOrderFulfillmentService _orderFulfillmentService;
  8. private const string USERNAME = "Bob";
  9. private const string PASSWORD = "Foo";
  10.  
  11. public OrderService(IOrderDataService orderDataService, ICustomerService customerService, 
  12. IOrderFulfillmentService orderFulfillmentService)
  13. {
  14. _orderDataService = orderDataService;
  15. _customerService = customerService;
  16. _orderFulfillmentService = orderFulfillmentService;
  17. }
Add Comment
Please, Sign In to add comment