public TestTreeTask AddNew() { var item = new TestTreeTask(); this.Add(item); return(item); }
public void Insert(int index, TestTreeTask entity) { base.Insert(index, entity); }
public int IndexOf(TestTreeTask entity) { return(base.IndexOf(entity)); }
public bool Contains(TestTreeTask entity) { return(base.Contains(entity)); }
public void Add(TestTreeTask entity) { base.Add(entity); }
public bool Remove(TestTreeTask entity) { return(base.Remove(entity)); }