Beispiel #1
0
 /// <pdGenerated>default Remove</pdGenerated>
 public void RemoveAppointmentService(Service.AppointmentService oldAppointmentService)
 {
     if (oldAppointmentService == null)
     {
         return;
     }
     if (this.appointmentService != null)
     {
         if (this.appointmentService.Contains(oldAppointmentService))
         {
             this.appointmentService.Remove(oldAppointmentService);
         }
     }
 }
Beispiel #2
0
 /// <pdGenerated>default Add</pdGenerated>
 public void AddAppointmentService(Service.AppointmentService newAppointmentService)
 {
     if (newAppointmentService == null)
     {
         return;
     }
     if (this.appointmentService == null)
     {
         this.appointmentService = new System.Collections.ArrayList();
     }
     if (!this.appointmentService.Contains(newAppointmentService))
     {
         this.appointmentService.Add(newAppointmentService);
     }
 }