Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
        //Custom Code End

        //Custom Code Start | Replaced Code Block
        //Replaced Code Block Start
        //public InventoryLocationsRepository(InventoryLocationsDB context, InventoryLocationsSlottingDB contextInventoryLocationsSlotting, InventoryUnitsDB contextInventoryUnits, InventoryUnitTransactionsDB contextInventoryUnitTransactions, MoveQueuesDB contextMoveQueues, OutboundCarrierManifestsDB contextOutboundCarrierManifests, ReceivingDB contextReceiving)
        //Replaced Code Block End
        public InventoryLocationsRepository(InventoryLocationsDB context, InventoryLocationsSlottingDB contextInventoryLocationsSlotting, InventoryUnitsDB contextInventoryUnits, InventoryUnitTransactionsDB contextInventoryUnitTransactions, MoveQueuesDB contextMoveQueues, OutboundCarrierManifestsDB contextOutboundCarrierManifests, ReceivingDB contextReceiving, CommonlyUsedSelects commonlyUsedSelects)
        //Custom Code End
        {
            _context = context;
            _contextInventoryLocationsSlotting = contextInventoryLocationsSlotting;
            _contextInventoryUnits             = contextInventoryUnits;
            _contextInventoryUnitTransactions  = contextInventoryUnitTransactions;
            _contextMoveQueues = contextMoveQueues;
            _contextOutboundCarrierManifests = contextOutboundCarrierManifests;
            _contextReceiving = contextReceiving;
            //Custom Code Start | Added Code Block
            _commonlyUsedSelects = commonlyUsedSelects;
            //Custom Code End
        }
Ejemplo n.º 3
0
 public InventoryLocationsSlottingRepository(InventoryLocationsSlottingDB context)
 {
     _context = context;
 }