public async Task <IActionResult> GetBynome(string nome) { try { var usuarios = await UserService.GetAllUserbyNameAsync(nome); if (usuarios == null) { return(NotFound("Nenhum usuario foi Encontrado com o nome informado.")); } return(Ok(usuarios)); } catch (Exception ex) { return(this.StatusCode(StatusCodes.Status500InternalServerError, $"Erro ao tentar recuperar o usuario pelo tema. Erro: {ex.Message}")); } }