Example #1
0
 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;
 }
Example #2
0
 public StockLocatorService(
     IRepository <StockLocator, int> stockLocatorRepository,
     IStoresPalletRepository palletRepository,
     IQueryRepository <StoragePlace> storagePlaceRepository,
     IRepository <StorageLocation, int> storageLocationRepository,
     IQueryRepository <StockLocatorBatch> stockLocatorBatchesView,
     IAuthorisationService authService,
     IStockLocatorLocationsViewService locationsViewService,
     IQueryRepository <StockLocatorPrices> stockLocatorView,
     IRepository <Part, int> partRepository,
     IQueryRepository <ReqMove> reqMoveRepository)
 {
     this.stockLocatorRepository    = stockLocatorRepository;
     this.palletRepository          = palletRepository;
     this.storagePlaceRepository    = storagePlaceRepository;
     this.storageLocationRepository = storageLocationRepository;
     this.stockLocatorBatchesView   = stockLocatorBatchesView;
     this.authService          = authService;
     this.locationsViewService = locationsViewService;
     this.stockLocatorView     = stockLocatorView;
     this.partRepository       = partRepository;
     this.reqMoveRepository    = reqMoveRepository;
 }