コード例 #1
0
 public WaveManagement(IOrderDataService orderDataService, IOptimizationEngine optimizationEngine,
                       ISupplierInventoryDataService supplierInventoryDataService)
 {
     this.orderDataService             = orderDataService;
     this.optimizationEngine           = optimizationEngine;
     this.supplierInventoryDataService = supplierInventoryDataService;
 }
 public SupplierInventoryBusinessEntity(ISupplierInventoryDataService supplierInventoryDataService,
                                        IStandardInventoryDataService standardInventoryBusinessEntity,
                                        IUserService userService)
 {
     this.supplierInventoryDataService    = supplierInventoryDataService;
     this.standardInventoryBusinessEntity = standardInventoryBusinessEntity;
     this.userService = userService;
 }
コード例 #3
0
 public OptimizationEngine(ISupplierInventoryDataService supplierInventoryDataService,
                           ISupplierStandardInventoryService supplierStandardInventoryService,
                           ISupplierBaseService supplierBaseService,
                           IDeliveryCostConfigurationDataService deliveryCostConfigurationDataService,
                           IUserService userService, IWatchListDataService watchListDataService)
 {
     this.supplierInventoryDataService     = supplierInventoryDataService;
     this.supplierStandardInventoryService = supplierStandardInventoryService;
     this.supplierBaseService = supplierBaseService;
     this.deliveryCostConfigurationDataService = deliveryCostConfigurationDataService;
     this.userService          = userService;
     this.watchListDataService = watchListDataService;
 }
コード例 #4
0
 public OrderBusinessEntity(IOrderDataService orderDataService,
                            IStandardInventoryBusinessEntity standardInventoryBusinessEntity,
                            IDeliverySlotsBusinessEntity deliverySlotBusinessEntity,
                            IUserBusinessEntity userBusinessEntity, IOptimizationEngine optimizationEngine,
                            ISupplierBaseService supplierBaseService,
                            ISupplierInventoryDataService supplierInventoryDataService,
                            IWaveManagement waveManagement)
 {
     this.orderDataService = orderDataService;
     this.standardInventoryBusinessEntity = standardInventoryBusinessEntity;
     this.deliverySlotBusinessEntity      = deliverySlotBusinessEntity;
     this.userBusinessEntity = userBusinessEntity;
     this.optimizationEngine = optimizationEngine;
     this.standardInventoryBusinessEntity = standardInventoryBusinessEntity;
     this.supplierBaseService             = supplierBaseService;
     this.supplierInventoryDataService    = supplierInventoryDataService;
     this.waveManagement = waveManagement;
 }