/// <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巡检项纪录); }
/// <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巡检项纪录); }