public NotaController(List <Nota> notas, List <Aluno> alunos)
 {
     _notaRepositorio  = new Repositorio.NotaRepositorio(notas);
     _alunoRepositorio = new Repositorio.AlunoRepositorio(alunos);
 }
Exemple #2
0
 public AlunoController(List <Aluno> alunos)
 {
     _alunoRepositorio = new Repositorio.AlunoRepositorio(alunos);
 }