Ejemplo n.º 1
0
 public void RemoveTeacher(Teacher teacher)
 {
     if (teacher == null) {
         throw new ArgumentNullException("teacher");
     }
     _teachers.Remove(teacher);
 }
Ejemplo n.º 2
0
 public void AddTeacher(Teacher teacher)
 {
     if (teacher == null) {
         throw new ArgumentNullException("teacher");
     }
     _teachers.Add(teacher);
 }