public ActionResult AddStudent()
        {
            var model = new StudentRequestModel();

            model.Teachers   = _teacherService.GetAllTeacher();
            model.Classrooms = _classroomService.GetAllClassroom();
            return(View(model));
        }
 public ActionResult Index()
 {
     return(View(_classroomService.GetAllClassroom()));
 }