コード例 #1
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
 }
コード例 #2
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;
 }