Ejemplo n.º 1
0
 public ActionResult SearchVerifyStudent(string keyword, string courseType, string courseYearList)
 {
     var repo = new RegistrationRepository();
     string schoolId = "1";
     var model = repo.SearchVerifiedStudent(schoolId, keyword, courseType, courseYearList);
     ViewBag.CourseType = CourseTypeList.GetAllList().FirstOrDefault(it => it.Value == courseType).Text;
     return PartialView("_VerifiedTable", model);
 }