コード例 #1
0
        public ActionResult LessonAttendence()
        {
            List <KeyValuePair <string, int> > statistic = SubjectsDB.GetLessonAttendence();

            ViewBag.Statistic = statistic;
            return(View());
        }
コード例 #2
0
        public JsonResult GetLessonAttendance()
        {
            List <KeyValuePair <string, int> > statistic = SubjectsDB.GetLessonAttendence();

            return(Json(new { Lessons = statistic }, JsonRequestBehavior.AllowGet));
        }