Skip to content

Instantly share code, notes, and snippets.

@andrechavesg
Created November 14, 2018 23:16
Show Gist options
  • Save andrechavesg/b14b0607f675f8ace5fde0eb62ddd911 to your computer and use it in GitHub Desktop.
Save andrechavesg/b14b0607f675f8ace5fde0eb62ddd911 to your computer and use it in GitHub Desktop.
public class Rastreio {
public static void main(String[] args) {
Buscador buscador = new Buscador();
Pessoa pessoa = buscador.buscaPorNome("Fabrício de Souza Batista");
if(pessoa != null){
System.out.println("cpf: "+pessoa.getCpf());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment