/// <summary> /// Copies the entire System.Collections.ObjectModel.Collection<T> to a compatible /// one-dimensional System.Array, starting at the specified index of the target /// array. /// </summary> /// <param name="array"></param> /// <param name="arrayIndex"></param> public void CopyTo($domainEntityName$[] array, int arrayIndex) { base.CopyTo(array, arrayIndex); }
/// <summary> /// Adds an object to the end of the System.Collections.ObjectModel.Collection<T>. /// </summary> /// <param name="item"></param> public void Add($domainEntityName$ item) { base.Add(item); }
/// <summary> /// Determines whether an element is in the System.Collections.ObjectModel.Collection<T>. /// </summary> /// <param name="item"></param> /// <returns></returns> public bool Contains($domainEntityName$ item) { return(base.Contains(item)); }
/// <summary> /// Searches for the specified object and returns the zero-based index of the /// first occurrence within the entire System.Collections.ObjectModel.Collection<T>.</summary> /// <param name="item"></param> /// <returns></returns> public int IndexOf($domainEntityName$ item) { return(base.IndexOf(item)); }
/// <summary> /// Inserts an element into the System.Collections.ObjectModel.Collection<T> /// at the specified index.</summary> /// <param name="index"></param> /// <param name="item"></param> public void Insert(int index, $domainEntityName$ item) { base.Insert(index, item); }
public void Insert(int index, $domainEntityName$ entity) { base.Insert(index, entity); }
public int IndexOf($domainEntityName$ entity) { return(base.IndexOf(entity)); }
public bool Contains($domainEntityName$ entity) { return(base.Contains(entity)); }
public void Add($domainEntityName$ entity) { base.Add(entity); }
public bool Remove($domainEntityName$ entity) { return(base.Remove(entity)); }