public RequisitionService( IStoresPack storesPack, IRepository <RequisitionHeader, int> requisitionHeaderRepository) { this.storesPack = storesPack; this.requisitionHeaderRepository = requisitionHeaderRepository; }
public GoodsInService( IGoodsInPack goodsInPack, IStoresPack storesPack, IRepository <Part, int> partsRepository) { this.storesPack = storesPack; this.goodsInPack = goodsInPack; this.partsRepository = partsRepository; }
public MoveStockService( IStoresPack storesPack, IKardexPack kardexPack, IRepository <RequisitionHeader, int> requisitionRepository, IRepository <StorageLocation, int> storageLocationRepository, IStoresPalletRepository storesPalletRepository) { this.storesPack = storesPack; this.kardexPack = kardexPack; this.requisitionRepository = requisitionRepository; this.storageLocationRepository = storageLocationRepository; this.storesPalletRepository = storesPalletRepository; }
public TpkService( IQueryRepository <TransferableStock> tpkView, IQueryRepository <AccountingCompany> accountingCompaniesRepository, ITpkPack tpkPack, IBundleLabelPack bundleLabelPack, IWhatToWandService whatToWandService, IQueryRepository <SalesAccount> salesAccountQueryRepository, IStoresPack storesPack, IRepository <Consignment, int> consignmentRepository, IQueryRepository <SalesOrderDetail> salesOrderDetailRepository, IQueryRepository <SalesOrder> salesOrderRepository) { this.tpkView = tpkView; this.tpkPack = tpkPack; this.bundleLabelPack = bundleLabelPack; this.whatToWandService = whatToWandService; this.storesPack = storesPack; this.salesAccountQueryRepository = salesAccountQueryRepository; this.accountingCompaniesRepository = accountingCompaniesRepository; this.consignmentRepository = consignmentRepository; this.salesOrderDetailRepository = salesOrderDetailRepository; this.salesOrderRepository = salesOrderRepository; }