public async Task <ActionResult <PersonDto> > Get(int id) { var result = await _service.GetByIdAsync(id); return(Ok(result)); }