Exemplo n.º 1
0
 public ListaDeProfessores()
 {
     this.vetor = new System.Collections.Generic.List<Professor>();
     this.variaveis = new EntradaDeDados.Variaveis();
     this.Load();
 }
Exemplo n.º 2
0
 public ListaDePeriodos()
 {
     this.vetor     = new System.Collections.Generic.List <Periodo>();
     this.variaveis = new EntradaDeDados.Variaveis();
     this.Load();
 }
Exemplo n.º 3
0
 public ListaDeMatriculas()
 {
     this.vetor = new System.Collections.Generic.List<Matricula>();
     this.variaveis = new EntradaDeDados.Variaveis();
 }
Exemplo n.º 4
0
 public ListaDeMatriculas()
 {
     this.vetor     = new System.Collections.Generic.List <Matricula>();
     this.variaveis = new EntradaDeDados.Variaveis();
 }
Exemplo n.º 5
0
 public ListaDeDisciplinas()
 {
     this.vetor = new System.Collections.Generic.List<Disciplina>();
     this.variaveis = new EntradaDeDados.Variaveis();
     this.Load();
 }
Exemplo n.º 6
0
 public ListaDeDisciplinas()
 {
     this.vetor     = new System.Collections.Generic.List <Disciplina>();
     this.variaveis = new EntradaDeDados.Variaveis();
     this.Load();
 }
Exemplo n.º 7
0
 /// <summary>
 /// Inicializa uma nova instância da classe <see cref="ListaDeAlunos"/>.
 /// </summary>
 public ListaDeAlunos()
 {
     this.vetor = new System.Collections.Generic.List<Aluno>();
     this.variaveis = new EntradaDeDados.Variaveis();
     this.Load();
 }