Exemple #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;
 }
 //Custom Code End
 //Custom Code Start | Replaced Code Block
 //Replaced Code Block Start
 //public OutboundOrdersService(IOutboundOrdersRepository outboundordersRepository)
 //Replaced Code Block End
 public OutboundOrdersService(IOutboundOrdersRepository outboundordersRepository, IPickBatchesService pickbatchesService, IOutboundShipmentsService outboundshipmentsService, ICarriersService carriersService, IOutboundOrderLinesService outboundorderlinesService)
 //Custom Code End
 {
     _outboundordersRepository = outboundordersRepository;
     //Custom Code Start | Added Code Block
     _pickbatchesService        = pickbatchesService;
     _outboundshipmentsService  = outboundshipmentsService;
     _carriersService           = carriersService;
     _outboundorderlinesService = outboundorderlinesService;
     //Custom Code End
 }
Exemple #3
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
 }
 public OutboundShipmentsController(IOutboundShipmentsService outboundshipmentsService)
 {
     _outboundshipmentsService = outboundshipmentsService;
 }