public DepartmentController(IDepartmentBll departmentBll, IFlexDeskBll flexDeskBll, IFloorBll floorBll, IUserBll userBll)
 {
     this.departmentBll = departmentBll;
     this.flexDeskBll   = flexDeskBll;
     this.floorBll      = floorBll;
     this.userBll       = userBll;
 }
 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();
 }
Exemplo n.º 3
0
 public FloorController(IFloorBll floorBll, IUserBll userBll)
 {
     this.floorBll = floorBll;
     this.userBll  = userBll;
 }
Exemplo n.º 4
0
 public FloorController(IFloorBll floorBll)
 {
     this.floorBll = floorBll;
 }
Exemplo n.º 5
0
 public BuildingController(IBuildingBll buildingBll, IFloorBll floorBll, IUserBll userBll)
 {
     this.buildingBll = buildingBll;
     this.floorBll    = floorBll;
     this.userBll     = userBll;
 }