Example #1
0
 public ZoneBusinessEntity(IZoneDataService iZoneDataService,
                           ISupplierBaseBusinessEntity supplierBaseBusinessEntity
                           )
 {
     this.iZoneDataService           = iZoneDataService;
     this.supplierBaseBusinessEntity = supplierBaseBusinessEntity;
 }
Example #2
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;
 }
Example #3
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 SupplierBaseController(ISupplierBaseBusinessEntity SupplierBaseService)
 {
     this.SupplierBaseService = SupplierBaseService;
 }