public CustomerListServiceTests()
        {
            var context       = TestEntityFactory.SetupContext();
            var entityFactory = TestEntityFactory.SetupEntityFactory(context);

            _service = new CustomerListService(entityFactory);
        }
 public AdminController(CustomerListService _customerListService, ItemService item, CustService _custSerivce)
 {
     customerListService = _customerListService;
     itemService         = item;
     custService         = _custSerivce;
 }
Beispiel #3
0
 public ConsolidateController(ItemService _item, CustomerListService _customerList)
 {
     itemService         = _item;
     customerListService = _customerList;
 }