Esempio n. 1
0
        public IActionResult Confirmed(int id = 1)
        {
            var pageIndex = id <= 0 ? 1 : id;
            var data      = _service.MyConfirmedApprovals(CurrentUser.No, id, out var total);

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