Пример #1
0
 public Shipping(ILocationFunctionsService locationfunctionsService
                 , IInventoryUnitsService inventoryunitsService
                 , IInventoryLocationsSlottingService inventorylocationsslottingService
                 , VolumeAndWeight volumeAndWeight
                 , IInventoryLocationsService inventorylocationsService
                 , CommonLookUps commonLookUps
                 , IOutboundCarrierManifestsService outboundcarriermanifestsService
                 , IOutboundOrdersRepository outboundordersRepository
                 //, IOutboundCarrierManifestPickupsService outboundcarriermanifestpickupsService
                 , IOutboundShipmentsService outboundshipmentsService
                 , IOutboundOrderLinesService outboundorderlinesService
                 , IOutboundOrderLinePackingService outboundorderlinepackingService
                 , IOutboundOrderLinesInventoryAllocationService outboundorderlinesinventoryallocationService
                 , IHandlingUnitsService handlingunitsService
                 )
 {
     _locationfunctionsService          = locationfunctionsService;
     _inventoryunitsService             = inventoryunitsService;
     _inventorylocationsslottingService = inventorylocationsslottingService;
     _volumeAndWeight                 = volumeAndWeight;
     _inventorylocationsService       = inventorylocationsService;
     _commonLookUps                   = commonLookUps;
     _outboundcarriermanifestsService = outboundcarriermanifestsService;
     _outboundordersRepository        = outboundordersRepository;
     //_outboundcarriermanifestpickupsService = outboundcarriermanifestpickupsService;
     _outboundshipmentsService        = outboundshipmentsService;
     _outboundorderlinesService       = outboundorderlinesService;
     _outboundorderlinepackingService = outboundorderlinepackingService;
     _outboundorderlinesinventoryallocationService = outboundorderlinesinventoryallocationService;
     _handlingunitsService = handlingunitsService;
 }
Пример #2
0
 //Custom Code End
 //Custom Code Start | Replaced Code Block
 //Replaced Code Block Start
 //public PickBatchesService(IPickBatchesRepository pickbatchesRepository)
 //Replaced Code Block End
 public PickBatchesService(IPickBatchesRepository pickbatchesRepository
                           , CommonLookUps commonLookUps
                           , Shipping shipping
                           , IOutboundCarrierManifestsService outboundcarriermanifestsService
                           , IOutboundOrdersRepository outboundordersRepository
                           , IOutboundShipmentsService outboundshipmentsService
                           )
 //Custom Code End
 {
     _pickbatchesRepository = pickbatchesRepository;
     //Custom Code Start | Added Code Block
     _commonLookUps = commonLookUps;
     _shipping      = shipping;
     _outboundcarriermanifestsService = outboundcarriermanifestsService;
     _outboundordersRepository        = outboundordersRepository;
     _outboundshipmentsService        = outboundshipmentsService;
     //Custom Code End
 }
Пример #3
0
 public OutboundCarrierManifestsController(IOutboundCarrierManifestsService outboundcarriermanifestsService)
 {
     _outboundcarriermanifestsService = outboundcarriermanifestsService;
 }