public async Task <IActionResult> GetAllAsync() { var response = await _personAppService.GetAllAsync(); if (response.Any()) { return(Ok(response)); } return(NoContent()); }