Beispiel #1
0
 /// <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);
 }
Beispiel #2
0
 /// <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);
 }
Beispiel #3
0
 /// <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));
 }
Beispiel #4
0
 /// <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));
 }
Beispiel #5
0
 /// <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);
 }
Beispiel #6
0
 public void Insert(int index, $domainEntityName$ entity)
 {
     base.Insert(index, entity);
 }
Beispiel #7
0
 public int IndexOf($domainEntityName$ entity)
 {
     return(base.IndexOf(entity));
 }
Beispiel #8
0
 public bool Contains($domainEntityName$ entity)
 {
     return(base.Contains(entity));
 }
Beispiel #9
0
 public void Add($domainEntityName$ entity)
 {
     base.Add(entity);
 }
Beispiel #10
0
 public bool Remove($domainEntityName$ entity)
 {
     return(base.Remove(entity));
 }