public async Task <IActionResult> RemoveAsync([FromRoute] int id)
        {
            await _personAppService.RemoveAsync(id);

            return(Ok());
        }