private bool CpfNaoExiste(string cpfDaPessoa)
        {
            var resultado = Task.Run(() => _pessoaAppService.ConsularSeCpfExisteAsync(cpfDaPessoa));

            return(!resultado.Result);
        }