示例#1
0
 // GET: Admin/DeThiManagement
 public ActionResult Index()
 {
     ViewBag.ListDeThi = deThiRepository.GetAll();
     return(View());
 }
示例#2
0
 // GET: Home
 public ActionResult Index()
 {
     return(View(deThiRepository.GetAll().OrderByDescending(x => x.DeThiID)));
 }