예제 #1
0
        //
        // GET: /Student/

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

            return(View(Model));
        }