示例#1
0
 private void SetLecturer(Lecturer theLecturer)
 {
     this.theLecturer = theLecturer;
     this.theLecturer.RegisterObserver(this);
 }
示例#2
0
 public Student(string studentName, Lecturer theLecturer)
 {
     SetStudentName(studentName);
     SetLecturer(theLecturer);
 }