Example #1
0
 /// <summary>
 /// Remove an existing 组织 from the collection
 /// </summary>
 /// <pdGenerated>Default Remove</pdGenerated>
 public void Remove组织(组织 old组织)
 {
     if (old组织 == null)
      return;
       if (this.组织 != null)
      if (this.组织.Contains(old组织))
         this.组织.Remove(old组织);
 }
Example #2
0
 /// <summary>
 /// Add a new 组织 in the collection
 /// </summary>
 /// <pdGenerated>Default Add</pdGenerated>
 public void Add组织(组织 new组织)
 {
     if (new组织 == null)
      return;
       if (this.组织 == null)
      this.组织 = new System.Collections.Generic.List<组织>();
       if (!this.组织.Contains(new组织))
      this.组织.Add(new组织);
 }