//Custom Code End

        //Custom Code Start | Replaced Code Block
        //Replaced Code Block Start
        //public InventoryLocationSizesController(IInventoryLocationSizesService inventorylocationsizesService )
        //Replaced Code Block End
        public InventoryLocationSizesController(IInventoryLocationSizesService inventorylocationsizesService, CommonlyUsedSelects commonlyUsedSelects)
        {
            //Custom Code End
            _inventorylocationsizesService = inventorylocationsizesService;
            //Custom Code Start | Added Code Block
            _commonlyUsedSelects = commonlyUsedSelects;
            //Custom Code End
        }
Esempio n. 2
0
        //Custom Code End

        //Custom Code Start | Replaced Code Block
        //Replaced Code Block Start
        //public MaterialsController(IMaterialsService materialsService )
        //Replaced Code Block End
        public MaterialsController(IMaterialsService materialsService, CommonlyUsedSelects commonlyUsedSelects)
        {
            //Custom Code End
            _materialsService = materialsService;
            //Custom Code Start | Added Code Block
            _commonlyUsedSelects = commonlyUsedSelects;
            //Custom Code End
        }
        //Custom Code End

        //Custom Code Start | Replaced Code Block
        //Replaced Code Block Start
        //public MaterialHandlingUnitConfigurationsController(IMaterialHandlingUnitConfigurationsService materialhandlingunitconfigurationsService )
        //Replaced Code Block End
        public MaterialHandlingUnitConfigurationsController(IMaterialHandlingUnitConfigurationsService materialhandlingunitconfigurationsService, CommonlyUsedSelects commonlyUsedSelects)
        //Custom Code End
        {
            _materialhandlingunitconfigurationsService = materialhandlingunitconfigurationsService;
            //Custom Code Start | Added Code Block
            _commonlyUsedSelects = commonlyUsedSelects;
            //Custom Code End
        }
 //Custom Code End
 //Custom Code Start | Replaced Code Block
 //Replaced Code Block Start
 //public HandlingUnitsController(IHandlingUnitsService handlingunitsService )
 //Replaced Code Block End
 public HandlingUnitsController(IHandlingUnitsService handlingunitsService, CommonlyUsedSelects commonlyUsedSelects)
 {
     //Custom Code End
     _handlingunitsService = handlingunitsService;
     //Custom Code Start | Added Code Block
     _commonlyUsedSelects = commonlyUsedSelects;
     //Custom Code End
 }
Esempio n. 5
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
        }