예제 #1
0
        public JsonResult Get(DeptSearchParam param, int pageIndex = 1, int pageSize = 20)
        {
            var list = service.Fetch(param.ToSearchUtil());

            return(Json(ResultUtil.Success <IEnumerable <DeptEntity> >(list)));
        }