public async Task <ActionResult <IEnumerable <PersonModel> > > List() { return(Ok(await _listPersonService.ListPersonAsync())); }
public async Task <ActionResult> Index() { return(View(await _listPersonService.ListPersonAsync())); }