// GET: Student public ActionResult Index() { var students = _registrationRepository.GetAllStudents(); return(View(students)); }