Пример #1
0
        public async Task <IActionResult> GetExceptionLogPage(DateTime?start, DateTime?end, int page, int size)
        {
            PageData <ExceptionLog> data = await _logBll.GetPageExceptionLogAsync(start, end, page, size);

            return(new JsonResult(new { success = true, data }));
        }