try
{
var personFinded = await personService.GetPersonById(id);
await personService.UpdatePerson(personFinded);
}
catch (DbUpdateException ex)
{
//do smth
}