public ActionResult AllocateClassrooms()
        {
            ViewBag.Departments = departmentManager.GetAllDepartmentsForDropDown();
            ViewBag.Rooms       = roomManager.GetAllRoomsForDropDown();
            ViewBag.Days        = dayManager.GetAllDaysForDropDown();

            return(View());
        }