Ejemplo n.º 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
 }
Ejemplo n.º 3
0
 public Picking(
     IOutboundOrderLinesInventoryAllocationService outboundorderlinesinventoryallocationService
     , IOutboundOrdersService outboundordersService
     , IPickBatchesService pickbatchesService
     , IMoveQueuesService movequeuesService
     , IOutboundOrderLinesService outboundorderlinesService
     , CommonLookUps commonLookUps
     , IInventoryUnitsService inventoryunitsService
     , IInventoryLocationsService inventorylocationsService
     )
 {
     _outboundorderlinesinventoryallocationService = outboundorderlinesinventoryallocationService;
     _outboundordersService     = outboundordersService;
     _pickbatchesService        = pickbatchesService;
     _movequeuesService         = movequeuesService;
     _outboundorderlinesService = outboundorderlinesService;
     _commonLookUps             = commonLookUps;
     _inventoryunitsService     = inventoryunitsService;
     _inventorylocationsService = inventorylocationsService;
 }
Ejemplo n.º 4
0
 public Inventory(IInventoryUnitsRepository inventoryunitsRepository
                  , IOutboundOrderLinesInventoryAllocationRepository outboundorderlinesinventoryallocationRepository
                  , IOutboundOrderLinesRepository outboundorderlinesRepository
                  , IStatusesRepository statusesRepository
                  , IInventoryStatesRepository inventorystatesRepository
                  , IPickBatchesRepository pickbatchesRepository
                  , IOutboundOrdersRepository outboundordersRepository
                  , IOutboundOrderLinesService outboundorderlinesService
                  , IOutboundOrderLinesInventoryAllocationService outboundorderlinesinventoryallocationService
                  )
 {
     _inventoryunitsRepository = inventoryunitsRepository;
     _outboundorderlinesinventoryallocationRepository = outboundorderlinesinventoryallocationRepository;
     _outboundorderlinesRepository = outboundorderlinesRepository;
     _statusesRepository           = statusesRepository;
     _inventorystatesRepository    = inventorystatesRepository;
     _pickbatchesRepository        = pickbatchesRepository;
     _outboundordersRepository     = outboundordersRepository;
     _outboundorderlinesService    = outboundorderlinesService;
     _outboundorderlinesinventoryallocationService = outboundorderlinesinventoryallocationService;
 }
 public OutboundOrderLinesController(IOutboundOrderLinesService outboundorderlinesService)
 {
     _outboundorderlinesService = outboundorderlinesService;
 }