public async Task <ActionResult <Person> > Get(int id) { Person person = await personDataService.GetById(id); if (person == null) { return(new NotFoundResult()); } return(Ok(person)); }