Ejemplo n.º 1
0
 public ActionResult SavePlanSet(PlanSet entity)
 {
     var message = new PlanSetService().SavePlanSet(entity);
     return Json(message, JsonRequestBehavior.DenyGet);
 }
Ejemplo n.º 2
0
 public ActionResult GetDataList(int pageIndex, int pageSize)
 {
     var json = new PlanSetService().GetDataList(pageIndex, pageSize);
     return Content(json, "application/json");
 }