예제 #1
0
        public CashierDeskController(
            ILoggerFactory loggerFactory,
            IStoreCashRegisterService storeCashRegisterService,
            IStoreScalesService storeScaleService,
            IProductPriceService productPriceService,
            ICurrentPricesService currentPriceService,
            IStoreService storeService,
            IProductService productService,
            ICashierService cashierService,
            IProductCategoryService productCategoryService,
            ISubgroupService subgroupService
            )
        {
            _logger = loggerFactory.GetLogger(typeof(CashierDeskController));

            _storeCashRegisterService = storeCashRegisterService;
            _storeScaleService        = storeScaleService;
            _productPriceService      = productPriceService;
            _currentPriceService      = currentPriceService;
            _storeService             = storeService;
            _productService           = productService;
            _cashierService           = cashierService;
            _productCategoryService   = productCategoryService;
            _subgroupService          = subgroupService;
        }
예제 #2
0
 public OverStoreController(
     ILoggerFactory loggerFactory,
     IDataUploadService dataUploadService,
     IParameterReader parameterReader,
     IUploadTypeService uploadTypeService,
     IStatusService statusService,
     //IPackageDetailService packageDetailService,
     IStoreCashRegisterService storeCashRegisterService,
     IStoreScalesService storeScaleService,
     IProductPriceService productPriceService,
     ICurrentPricesService currentPriceService,
     IStoreService storeService,
     IProductService productService,
     ICashierService cashierService,
     IStorageZonesService storageZonesService,
     IStockTakingScheduleService stockTakingScheduleService,
     IStockTakingService stockTakingService,
     IStoreOrderService storeOrderService
     )
 {
     _logger            = loggerFactory.GetLogger(typeof(OverStoreController));
     _dataUploadService = dataUploadService;
     _parameterReader   = parameterReader;
     _uploadTypeService = uploadTypeService;
     _statusService     = statusService;
     //_packageDetailService = packageDetailService;
     _storeCashRegisterService   = storeCashRegisterService;
     _storeScaleService          = storeScaleService;
     _productPriceService        = productPriceService;
     _currentPriceService        = currentPriceService;
     _storeService               = storeService;
     _productService             = productService;
     _cashierService             = cashierService;
     _storageZonesService        = storageZonesService;
     _stockTakingScheduleService = stockTakingScheduleService;
     _stockTakingService         = stockTakingService;
     _storeOrderService          = storeOrderService;
 }