public ActionResult Index() { List <PLStudent> list = StudentClientService.GetStudentList(); ViewBag.breadCrumbData = "Student List"; return(View("List", list)); }
public JsonResult GetSampleStudent(int idx) { List <PLStudent> list = StudentClientService.GetStudentList(); return(this.Json(list[idx], JsonRequestBehavior.AllowGet)); }
public string GetNumStudentsTotal() { List <PLStudent> list = StudentClientService.GetStudentList(); return(list.Count.ToString()); }