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巡检项目);
 }