Exemplo n.º 1
0
 /// <pdGenerated>default Remove</pdGenerated>
 public void RemovePatientService(Service.PatientService oldPatientService)
 {
     if (oldPatientService == null)
     {
         return;
     }
     if (this.patientService != null)
     {
         if (this.patientService.Contains(oldPatientService))
         {
             this.patientService.Remove(oldPatientService);
         }
     }
 }
Exemplo n.º 2
0
 /// <pdGenerated>default Add</pdGenerated>
 public void AddPatientService(Service.PatientService newPatientService)
 {
     if (newPatientService == null)
     {
         return;
     }
     if (this.patientService == null)
     {
         this.patientService = new System.Collections.ArrayList();
     }
     if (!this.patientService.Contains(newPatientService))
     {
         this.patientService.Add(newPatientService);
     }
 }