Esempio n. 1
0
        //
        // GET: /Student/

        public ViewResult Index()
        {
            return(View(StuBO.GetAllStudents().ToList()));
        }
Esempio n. 2
0
        public ActionResult StudentAccountList()
        {
            var Model = StuBO.GetAllStudents().OrderByDescending(s => s.StudentID);

            return(View(Model));
        }