/// <pdGenerated>default Remove</pdGenerated>
 public void RemoveNotifficationRepository(Repository.NotifficationRepository oldNotifficationRepository)
 {
     if (oldNotifficationRepository == null)
     {
         return;
     }
     if (this.notifficationRepository != null)
     {
         if (this.notifficationRepository.Contains(oldNotifficationRepository))
         {
             this.notifficationRepository.Remove(oldNotifficationRepository);
         }
     }
 }
 /// <pdGenerated>default Add</pdGenerated>
 public void AddNotifficationRepository(Repository.NotifficationRepository newNotifficationRepository)
 {
     if (newNotifficationRepository == null)
     {
         return;
     }
     if (this.notifficationRepository == null)
     {
         this.notifficationRepository = new System.Collections.ArrayList();
     }
     if (!this.notifficationRepository.Contains(newNotifficationRepository))
     {
         this.notifficationRepository.Add(newNotifficationRepository);
     }
 }