public AdjustContractPriceFacade(IDBContext dbContext) { _db = dbContext; _service = new AdjustContractPriceService(this._db); _processHistoryService = new ProcessHistoryService(this._db); _sequenceService = new BillSequenceService(this._db); _contractService = new PurchaseContractService(this._db); }
public ProductFacade(IDBContext dbContext) { _db = dbContext; _productService = new ProductService(this._db); _adjustSalePriceService = new AdjustSalePriceService(this._db); _processHistoryService = new ProcessHistoryService(this._db); _sequenceService = new BillSequenceService(this._db); }
public TransferOrderFacade(IDBContext dbContext) { _db = dbContext; _service = new TransferOrderService(this._db); _sequenceService = new BillSequenceService(this._db); _inventoryService = new StoreInventoryService(this._db); _processHistoryService = new ProcessHistoryService(this._db); }
public StocktakingPlanFacade(IDBContext dbContext) { _db = dbContext; _service = new StocktakingPlanService(_db); _billService = new BillSequenceService(_db); _inventoryService = new StoreInventoryService(_db); _stocktakingService = new StocktakingService(_db); }
public StorePurchaseOrderFacade(IDBContext dbContext) { _db = dbContext; _service = new StorePurchaseOrderService(this._db); _processHistoryService = new ProcessHistoryService(this._db); _sequenceService = new BillSequenceService(this._db); _storeInventoryService = new StoreInventoryService(this._db); _storeBatchService = new StoreInventoryBatchService(this._db); }
public AdjustStorePriceFacade(IDBContext dbContext) { _db = dbContext; _service = new AdjustStorePriceService(this._db); _processHistoryService = new ProcessHistoryService(this._db); _sequenceService = new BillSequenceService(this._db); _productService = new ProductService(this._db); _storeInventoryService = new StoreInventoryService(this._db); }
public StocktakingFacade(IDBContext dbContext) { _db = dbContext; _billService = new BillSequenceService(_db); _stocktakingService = new StocktakingService(_db); }