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