Beispiel #1
0
        public ActionResult ReadYearMonth(int year, int month, int?page)
        {
            var result = _ledgerService.GetListByYearAndMonth(year, month)
                         .ToPagedList(page ?? 1, _pageSize);

            return(View(result));
        }