public JsonResult GetStudentById(int id)
        {
            Student student = manager.GetStudentByById(id);

            return(Json(student, JsonRequestBehavior.AllowGet));
        }