示例#1
0
 // GET: Home
 public ActionResult Index()
 {
     ViewBag.Category = CategoryRepo.GetAllForHome();
     ViewBag.Book     = BookRepo.GetAllForHome();
     return(View());
 }
 // GET: Home
 public ActionResult Index(int?page)
 {
     ViewBag.Categories = CategoryRepo.GetAllForHome();
     return(View(BookRepo.GetAllForHome().ToPagedList(page ?? 1, 8)));
 }