Exemplo n.º 1
0
        public IActionResult Audited(int id = 1)
        {
            var pageIndex = id <= 0 ? 1 : id;
            var data      = _service.MyAuditedApprovals(CurrentUser.No, id, out var total);

            ViewBag.PageIndex   = pageIndex;
            ViewBag.RecordCount = total;
            return(View(data));
        }