public JsonResult GetById(int id)
        {
            var student = StudentDataEF.GetStudentById(id);

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