Beispiel #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巡检计划);
 }
Beispiel #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巡检计划);
 }