Exemplo n.º 1
0
 private void SetLecturer(Lecturer theLecturer)
 {
     this.theLecturer = theLecturer;
     this.theLecturer.RegisterObserver(this);
 }
Exemplo n.º 2
0
 public Student(string studentName, Lecturer theLecturer)
 {
     SetStudentName(studentName);
     SetLecturer(theLecturer);
 }