Exemplo n.º 1
0
 public void Detach(ISchoolPsychologist ISchoolPsychologist)
 {
     if (this.psychologists != null)
     {
         this.psychologists.Remove(ISchoolPsychologist);
     }
 }
Exemplo n.º 2
0
        public void Attach(ISchoolPsychologist psychologist)
        {
            if (this.psychologists == null)
            {
                this.psychologists = new List<ISchoolPsychologist>();
            }

            this.psychologists.Add(psychologist);
        }