public MaterialHandlingUnitConfigurationsRepository(MaterialHandlingUnitConfigurationsDB context, HandlingUnitsDB contextHandlingUnits, InboundOrderLinesDB contextInboundOrderLines, ReceivingDB contextReceiving)
 {
     _context = context;
     _contextHandlingUnits     = contextHandlingUnits;
     _contextInboundOrderLines = contextInboundOrderLines;
     _contextReceiving         = contextReceiving;
 }
Esempio n. 2
0
 public MaterialsRepository(MaterialsDB context, HandlingUnitsDB contextHandlingUnits, InboundOrderLinesDB contextInboundOrderLines, InventoryLocationsSlottingDB contextInventoryLocationsSlotting, InventoryUnitsDB contextInventoryUnits, InventoryUnitTransactionsDB contextInventoryUnitTransactions, MaterialHandlingUnitConfigurationsDB contextMaterialHandlingUnitConfigurations, OutboundOrderLinesDB contextOutboundOrderLines, PurchaseLinesDB contextPurchaseLines, ReceivingDB contextReceiving)
 {
     _context = context;
     _contextHandlingUnits                      = contextHandlingUnits;
     _contextInboundOrderLines                  = contextInboundOrderLines;
     _contextInventoryLocationsSlotting         = contextInventoryLocationsSlotting;
     _contextInventoryUnits                     = contextInventoryUnits;
     _contextInventoryUnitTransactions          = contextInventoryUnitTransactions;
     _contextMaterialHandlingUnitConfigurations = contextMaterialHandlingUnitConfigurations;
     _contextOutboundOrderLines                 = contextOutboundOrderLines;
     _contextPurchaseLines                      = contextPurchaseLines;
     _contextReceiving = contextReceiving;
 }
 public StatusesRepository(StatusesDB context, DocumentsDB contextDocuments, HandlingUnitsDB contextHandlingUnits, HandlingUnitsShippingDB contextHandlingUnitsShipping, InboundOrderLinesDB contextInboundOrderLines, InboundOrdersDB contextInboundOrders, InventoryUnitsDB contextInventoryUnits, InventoryUnitTransactionsDB contextInventoryUnitTransactions, MoveQueuesDB contextMoveQueues, OutboundCarrierManifestPickupsDB contextOutboundCarrierManifestPickups, OutboundCarrierManifestsDB contextOutboundCarrierManifests, OutboundOrderLinePackingDB contextOutboundOrderLinePacking, OutboundOrderLinesDB contextOutboundOrderLines, OutboundOrderLinesInventoryAllocationDB contextOutboundOrderLinesInventoryAllocation, OutboundOrdersDB contextOutboundOrders, OutboundShipmentsDB contextOutboundShipments, PickBatchesDB contextPickBatches, PickBatchPickingDB contextPickBatchPicking, ReceivingDB contextReceiving)
 {
     _context                                      = context;
     _contextDocuments                             = contextDocuments;
     _contextHandlingUnits                         = contextHandlingUnits;
     _contextHandlingUnitsShipping                 = contextHandlingUnitsShipping;
     _contextInboundOrderLines                     = contextInboundOrderLines;
     _contextInboundOrders                         = contextInboundOrders;
     _contextInventoryUnits                        = contextInventoryUnits;
     _contextInventoryUnitTransactions             = contextInventoryUnitTransactions;
     _contextMoveQueues                            = contextMoveQueues;
     _contextOutboundCarrierManifestPickups        = contextOutboundCarrierManifestPickups;
     _contextOutboundCarrierManifests              = contextOutboundCarrierManifests;
     _contextOutboundOrderLinePacking              = contextOutboundOrderLinePacking;
     _contextOutboundOrderLines                    = contextOutboundOrderLines;
     _contextOutboundOrderLinesInventoryAllocation = contextOutboundOrderLinesInventoryAllocation;
     _contextOutboundOrders                        = contextOutboundOrders;
     _contextOutboundShipments                     = contextOutboundShipments;
     _contextPickBatches                           = contextPickBatches;
     _contextPickBatchPicking                      = contextPickBatchPicking;
     _contextReceiving                             = contextReceiving;
 }
Esempio n. 4
0
 public InboundOrdersRepository(InboundOrdersDB context, InboundOrderLinesDB contextInboundOrderLines, ReceivingDB contextReceiving)
 {
     _context = context;
     _contextInboundOrderLines = contextInboundOrderLines;
     _contextReceiving         = contextReceiving;
 }
 public InboundOrderLinesRepository(InboundOrderLinesDB context, MoveQueuesDB contextMoveQueues)
 {
     _context           = context;
     _contextMoveQueues = contextMoveQueues;
 }