Example #1
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;
 }
Example #3
0
 public DeliverySlotsController(IDeliverySlotsBusinessEntity deliverySlotsService)
 {
     this.deliverySlotsService = deliverySlotsService;
 }