예제 #1
0
        public JsonResult List(int page = 1, string searchKey = "")
        {
            var result = _quotationService.GetAllWithPageListSearch(page, 12, searchKey);

            return(Json(new { data = result, pageNumber = result.PageCount, keyword = searchKey }, JsonRequestBehavior.AllowGet));
            //return Json(new { data = userRepo.GetAll() }, JsonRequestBehavior.AllowGet);
        }