// GET: Home public ActionResult Index() { List <Student> model = new List <Student>(); model = studentSqlDAl.GetAllStudents(); return(View("Index", model)); }
public ActionResult Index() { List <Student> students = studentDAL.GetAllStudents(); return(View("Index", students)); }