public List <PessoaJuridica> ListarPessoas()
 {
     return(_pessoaJuridicaRepository.GetAll().OrderBy(x => x.NomeFantasia).ToList());
 }