Esempio n. 1
0
 //
 // GET: /Admin/AminProduct/
 //[ValidateInput(true)]
 public ActionResult Index(int?page)
 {
     if (page == null)
     {
         page = 1;
     }
     return(View(ProductBus.AdDanhSach(page)));
 }