public ReservationController(IAbsenceBll absenceBll, IReservationBll reservationBll, IUserBll userBll, IFloorBll floorBll, IBuildingBll buildingBll, IDepartmentBll departmentBll, IFlexDeskBll flexDeskBll)
 {
     this.absenceBll     = absenceBll;
     this.reservationBll = reservationBll;
     this.userBll        = userBll;
     this.buildingBll    = buildingBll;
     this.floorBll       = floorBll;
     this.departmentBll  = departmentBll;
     this.flexDeskBll    = flexDeskBll;
     this.rvm            = new ReservationViewModel();
 }
Exemple #2
0
 public BuildingController(IBuildingBll buildingBll)
 {
     this.buildingBll = buildingBll;
 }
Exemple #3
0
 public BuildingController(IBuildingBll buildingBll, IFloorBll floorBll, IUserBll userBll)
 {
     this.buildingBll = buildingBll;
     this.floorBll    = floorBll;
     this.userBll     = userBll;
 }