Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package app;
  2.  
  3. import br.gov.iti.dao.PessoaDao;
  4. import entidades.LeituraXML;
  5. import entidades.Pessoa;
  6.  
  7. public class Aplicacao {
  8.  
  9. public static void main(String[] args) {
  10.  
  11. LeituraXML ler = new LeituraXML();
  12. PessoaDao pessoa = new PessoaDao();
  13.  
  14.  
  15. Pessoa p1 = null;
  16.  
  17. pessoa.selectBase(p1);
  18.  
  19.  
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement