public async Task <ActionResult <PersonPhoneResponse> > Get(int id) { return(Response(await _facade.FindAsync(id))); }
public async Task <ActionResult <PersonPhoneResponse> > Get(string key) => Response(await _personPhoneFacade.FindAsync(key));