Esempio n. 1
0
        public JsonResult GetCourseByStudentId(int studentId)
        {
            List <SelectListItem> courseList = AStudentResultManager.GetAllCourseByStudentId(studentId);

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