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巡检路线);
 }