/// <summary>
 /// Searches for the specified ZCONTRACT_HDR and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(ZCONTRACT_HDR value) 
 {
     return List.IndexOf(value);
 }
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(ZCONTRACT_HDR value) 
 {
     return List.Contains(value);
 }
 /// <summary>
 /// Adds a ZCONTRACT_HDR to the end of the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to be added to the end of the collection.</param>
 /// <returns>The index of the newZCONTRACT_HDR.</returns>
 public int Add(ZCONTRACT_HDR value) 
 {
     return List.Add(value);
 }
 /// <summary>
 /// Inserts a ZCONTRACT_HDR into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The ZCONTRACT_HDR to insert.</param>
 public void Insert(int index, ZCONTRACT_HDR value) 
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Removes the first occurrence of the specified ZCONTRACT_HDR from the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to remove from the collection.</param>
 public void Remove(ZCONTRACT_HDR value) 
 {
     List.Remove(value);
 }
    /// <summary>
    /// Copies the contents of the ZCONTRACT_HDRTable to the specified one-dimensional array starting at the specified index in the target array.
    /// </summary>
    /// <param name="array">The one-dimensional destination array.</param>           
    /// <param name="index">The zero-based index in array at which copying begins.</param>           
    public void CopyTo(ZCONTRACT_HDR[] array, int index) 
    {
        List.CopyTo(array, index);
	}
예제 #7
0
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(ZCONTRACT_HDR value)
 {
     return(List.Contains(value));
 }
예제 #8
0
 /// <summary>
 /// Searches for the specified ZCONTRACT_HDR and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(ZCONTRACT_HDR value)
 {
     return(List.IndexOf(value));
 }
예제 #9
0
 /// <summary>
 /// Inserts a ZCONTRACT_HDR into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The ZCONTRACT_HDR to insert.</param>
 public void Insert(int index, ZCONTRACT_HDR value)
 {
     List.Insert(index, value);
 }
예제 #10
0
 /// <summary>
 /// Adds a ZCONTRACT_HDR to the end of the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to be added to the end of the collection.</param>
 /// <returns>The index of the newZCONTRACT_HDR.</returns>
 public int Add(ZCONTRACT_HDR value)
 {
     return(List.Add(value));
 }
예제 #11
0
 /// <summary>
 /// Removes the first occurrence of the specified ZCONTRACT_HDR from the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_HDR to remove from the collection.</param>
 public void Remove(ZCONTRACT_HDR value)
 {
     List.Remove(value);
 }