예제 #1
0
        public async Task <IActionResult> All()
        {
            var finder = new Finder(_itemsRepository);
            var people = await finder.All();

            ViewData["Title"] = "All Data";
            return(View("Table", people));
        }