/// <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岗位); }