Пример #1
0
 public JsonResult Get(int page, int pageSize)
 {
     JsonResult result = new JsonResult();
     Staff bll = new Staff();
     var t = bll.FindByPage(pageSize, page);
     return Json(t, JsonRequestBehavior.AllowGet);
 }