Ejemplo n.º 1
0
 public ActionResult GetQuery(int pageIndex, int pageSize, ProductCategory pc)
 {
     return(Json(ProCategoryManager.GetQuery(pageIndex, pageSize, pc), JsonRequestBehavior.AllowGet));
 }
Ejemplo n.º 2
0
 public ActionResult pageCount(int pageSize)
 {
     return(Json(ProCategoryManager.PageCount(pageSize), JsonRequestBehavior.AllowGet));
 }
Ejemplo n.º 3
0
 public ActionResult DelCategory(ProductCategory pc)
 {
     pc.IsDelete = 1;
     return(Json(ProCategoryManager.DelCategory(pc), JsonRequestBehavior.AllowGet));
 }