public Gerenciador()
 {
     this.leitor    = new Leitor();
     this.baseDados = this.leitor.LerArquivo();
 }
Example #2
0
 public Interface()
 {
     this.gerenciador = new Gerenciador();
     this.livros      = gerenciador.GerarListaLivros();
     this.leitor      = new Leitor();
 }