public JsonResult GetSchoolTeacherScore(int SchoolId) { BLL.All bll = new BLL.All(); return(Json(bll.GetSchoolTeacherScore(SchoolId))); }
public JsonResult GetTeacherClassScore(int TeacherId, int ClassId) { BLL.All bll = new BLL.All(); return(Json(bll.GetTeacherClassScore(TeacherId, ClassId))); }
public JsonResult GetSchoolScore() { BLL.All bll = new BLL.All(); return(Json(bll.GetSchoolScore())); }