Exemplo n.º 1
0
        // GET: Student
        public ActionResult Index()
        {
            StudentHandler handler     = new StudentHandler();
            List <Student> studentList = handler.GetAll();

            return(View(studentList));
        }