//
 public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService, IMenuService menuService)
 {
     _inventoryDao     = inventoryDao;
     _applicationState = applicationState;
     _cacheService     = cacheService;
     _menuService      = menuService;
 }
Esempio n. 2
0
 public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService, IMenuService menuService)
 {
     _inventoryDao = inventoryDao;
     _applicationState = applicationState;
     _cacheService = cacheService;
     _menuService = menuService;
 }
Esempio n. 3
0
        public InventoryService(IInventoryDao inventoryDao, IApplicationState applicationState, ICacheService cacheService)
        {
            _inventoryDao     = inventoryDao;
            _applicationState = applicationState;
            _cacheService     = cacheService;

            EventServiceFactory.EventService.GetEvent <GenericEvent <WorkPeriod> >().Subscribe(OnWorkperiodStatusChanged);
        }
Esempio n. 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;
 }
Esempio n. 6
0
 public InventoryLogic(IInventoryDao inventoryDao)
 {
     this._inventoryDao = new InventoryDao();
 }