Exemplo n.º 1
0
 public AbsenceObserver(Eleve eleve)
 {
     Student = eleve;
     Student.AttachObserver(this);
 }
Exemplo n.º 2
0
 public NotesObserver(Eleve eleve)
 {
     Student = eleve;
     Student.AttachObserver(this);
 }