Beispiel #1
0
 public Curso(int id, string nome)
 {
     Id        = id;
     Nome      = nome;
     Alunos    = new SortedSet <Aluno>();
     Instrutor = null;
 }
Beispiel #2
0
 public void SetInstrutor(Instrutor instrutor)
 {
     Instrutor = instrutor;
 }