Exemplo n.º 1
0
        public ActionResult List(SanphamSearchModel searchModel)
        {
            var pagedList = SanphamService.Search(searchModel.ID, searchModel.ProductName, searchModel.Amount, searchModel.ProductType_ID, searchModel.PageIndex);

            pagedList.SearchModel = searchModel;
            return(PartialView("_List", pagedList));
        }
Exemplo n.º 2
0
 // GET: SanPham
 public ActionResult Index(SanphamSearchModel searchModel)
 {
     ViewBag.ProductType_ID = new SelectList(SanphamService.GetAllLoaisanpham(), "ID", "ProductTypeName");
     return(View(searchModel));
 }