public int Add(ConstructTaskBook value) { return(base.List.Add(value)); }
public void Remove(ConstructTaskBook value) { base.List.Remove(value); }
public int Index(ConstructTaskBook value) { return(base.List.IndexOf(value)); }
public void Insert(int index, ConstructTaskBook value) { base.List.Insert(index, value); }
public bool Contains(ConstructTaskBook value) { return(base.List.Contains(value)); }