Пример #1
0
 //
 public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService, IMenuService menuService)
 {
     _inventoryDao     = inventoryDao;
     _applicationState = applicationState;
     _cacheService     = cacheService;
     _menuService      = menuService;
 }
Пример #2
0
 public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService, IMenuService menuService)
 {
     _inventoryDao = inventoryDao;
     _applicationState = applicationState;
     _cacheService = cacheService;
     _menuService = menuService;
 }
Пример #3
0
        public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService)
        {
            _inventoryDao     = inventoryDao;
            _applicationState = applicationState;
            _cacheService     = cacheService;

            EventServiceFactory.EventService.GetEvent <GenericEvent <WorkPeriod> >().Subscribe(OnWorkperiodStatusChanged);
        }
Пример #4
0
        public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService)
        {
            _inventoryDao = inventoryDao;
            _applicationState = applicationState;
            _cacheService = cacheService;

            EventServiceFactory.EventService.GetEvent<GenericEvent<WorkPeriod>>().Subscribe(OnWorkperiodStatusChanged);
        }
 public InventoryService(
     IInventoryDao inventoryDao,
     IProductDao productDao,
     IProductService productService,
     IZoneService zoneService)
 {
     _inventoryDao   = inventoryDao;
     _productDao     = productDao;
     _productService = productService;
     _zoneService    = zoneService;
 }
Пример #6
0
 public InventoryLogic(IInventoryDao inventoryDao)
 {
     this._inventoryDao = new InventoryDao();
 }