Ejemplo n.º 1
0
 public ActionResult exceptionLogList(ExceptionLogSearchRequest condtion, string pageId = null)
 {
     ViewBag.pageId = getPageId(pageId);
     return(View(condtion));
 }
Ejemplo n.º 2
0
        public BaseResponse <BaseResponseList <ExceptionLog> > getExceptionLogs(ExceptionLogSearchRequest condtion)
        {
            var result = ExceptionLog.searchList(condtion);

            return(BaseResponse.getResult(result));
        }