public JsonResult GetStudentName(int id)
        {
            Student student = enrollCourseManager.GetStudentInformation(id);
            string  name    = student.Name;

            return(Json(name));
        }