public async Task <ActionResult> Index(int id = 1) { IEnumerable <Person> Persons = await _store.GetPage(id, 20); return(View(Persons)); }