/// <pdGenerated>default Remove</pdGenerated>
 public void RemoveNotifficationService(Service.NotifficationService oldNotifficationService)
 {
     if (oldNotifficationService == null)
     {
         return;
     }
     if (this.notifficationService != null)
     {
         if (this.notifficationService.Contains(oldNotifficationService))
         {
             this.notifficationService.Remove(oldNotifficationService);
         }
     }
 }
 /// <pdGenerated>default Add</pdGenerated>
 public void AddNotifficationService(Service.NotifficationService newNotifficationService)
 {
     if (newNotifficationService == null)
     {
         return;
     }
     if (this.notifficationService == null)
     {
         this.notifficationService = new System.Collections.ArrayList();
     }
     if (!this.notifficationService.Contains(newNotifficationService))
     {
         this.notifficationService.Add(newNotifficationService);
     }
 }