コード例 #1
0
        public CustomerListServiceTests()
        {
            var context       = TestEntityFactory.SetupContext();
            var entityFactory = TestEntityFactory.SetupEntityFactory(context);

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