public ActionResult ListeKullanici(int?page) { FrmViewData frm = new FrmViewData(); int totalCount; frm.Users = _repoUser.GetListByDate(100, page ?? 1, out totalCount); PaginatedList pager = new PaginatedList((page ?? 1), 100, totalCount); ViewBag.SiteName = _repoSet[SettingKey.SiteName]; return(View(frm.WithPaging(pager))); }