//Custom Code End

        //Custom Code Start | Replaced Code Block
        //Replaced Code Block Start
        //public PickBatchesController(IPickBatchesService pickbatchesService)
        //Replaced Code Block End
        public PickBatchesController(IPickBatchesService pickbatchesService, Inventory inventory, IStatusesService statusesService, IOutboundOrdersService outboundordersService, Picking picking)
        //Custom Code End
        {
            _pickbatchesService    = pickbatchesService;
            _inventory             = inventory;
            _statusesService       = statusesService;
            _outboundordersService = outboundordersService;
            _picking = picking;
        }
示例#2
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;
 }
示例#3
0
 public OutboundOrdersController(IOutboundOrdersService outboundordersService)
 {
     _outboundordersService = outboundordersService;
 }