示例#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;
 }
示例#2
0
        public UserBusinessEntity(IUserService userService,
                                  ISupplierBaseBusinessEntity supplierBaseBusinessEntity,
                                  IDeliverySlotsBusinessEntity deliverySlotsBusinessEntity,
                                  IStandardInventoryBusinessEntity standardInventoryBusinessEntity,
                                  ISupplierStandardInventoryBusinessEntity supplierStandardInventoryBusinessEntity,
                                  IZoneBusinessEntity zoneBusinessEntity)

        {
            this.userService = userService;
            this.supplierBaseBusinessEntity              = supplierBaseBusinessEntity;
            this.standardInventoryBusinessEntity         = standardInventoryBusinessEntity;
            this.deliverySlotsBusinessEntity             = deliverySlotsBusinessEntity;
            this.supplierStandardInventoryBusinessEntity = supplierStandardInventoryBusinessEntity;
            this.zoneBusinessEntity = zoneBusinessEntity;
        }
 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;
 }
示例#4
0
 public StandardInventoryController(IStandardInventoryBusinessEntity standardInventoryService)
 {
     this.standardInventoryService = standardInventoryService;
 }
 public SupplierStandardInventoryBusinessEntity(ISupplierStandardInventoryService supplierStandardInventoryService,
                                                IStandardInventoryBusinessEntity standardInventoryBusinessEntity)
 {
     this.supplierStandardInventoryService = supplierStandardInventoryService;
     this.standardInventoryBusinessEntity  = standardInventoryBusinessEntity;
 }