示例#1
0
 public WatchListBusinessEntity(
     //IWatchListBusinessEntity watchListBusinessEntity,
     IUserBusinessEntity userBusinessEntity,
     ISupplierStandardInventoryBusinessEntity supplierStandardInventoryBusinessEntity,
     ISupplierInventoryBusinessEntity supplierInventoryBusinessEntity,
     ISupplierBaseBusinessEntity supplierBaseBusinessEntity,
     IStandardInventoryBusinessEntity standardInventoryBusinessEntity)
 {
     //this.watchListBusinessEntity = watchListBusinessEntity;
     this.userBusinessEntity = userBusinessEntity;
     this.supplierStandardInventoryBusinessEntity = supplierStandardInventoryBusinessEntity;
     this.supplierInventoryBusinessEntity         = supplierInventoryBusinessEntity;
     this.supplierBaseBusinessEntity      = supplierBaseBusinessEntity;
     this.standardInventoryBusinessEntity = standardInventoryBusinessEntity;
 }
 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;
 }
 public UsersController(IUserBusinessEntity userService)
 {
     this.userService = userService;
 }