/// <summary>
 /// Searches for the specified ZCONTRACT_ITM and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(ZCONTRACT_ITM value) 
 {
     return List.IndexOf(value);
 }
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(ZCONTRACT_ITM value) 
 {
     return List.Contains(value);
 }
 /// <summary>
 /// Adds a ZCONTRACT_ITM to the end of the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to be added to the end of the collection.</param>
 /// <returns>The index of the newZCONTRACT_ITM.</returns>
 public int Add(ZCONTRACT_ITM value) 
 {
     return List.Add(value);
 }
 /// <summary>
 /// Inserts a ZCONTRACT_ITM 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_ITM to insert.</param>
 public void Insert(int index, ZCONTRACT_ITM value) 
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Removes the first occurrence of the specified ZCONTRACT_ITM from the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to remove from the collection.</param>
 public void Remove(ZCONTRACT_ITM value) 
 {
     List.Remove(value);
 }
    /// <summary>
    /// Copies the contents of the ZCONTRACT_ITMTable 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_ITM[] array, int index) 
    {
        List.CopyTo(array, index);
	}
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(ZCONTRACT_ITM value)
 {
     return(List.Contains(value));
 }
 /// <summary>
 /// Searches for the specified ZCONTRACT_ITM and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(ZCONTRACT_ITM value)
 {
     return(List.IndexOf(value));
 }
 /// <summary>
 /// Inserts a ZCONTRACT_ITM 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_ITM to insert.</param>
 public void Insert(int index, ZCONTRACT_ITM value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Adds a ZCONTRACT_ITM to the end of the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to be added to the end of the collection.</param>
 /// <returns>The index of the newZCONTRACT_ITM.</returns>
 public int Add(ZCONTRACT_ITM value)
 {
     return(List.Add(value));
 }
 /// <summary>
 /// Removes the first occurrence of the specified ZCONTRACT_ITM from the collection.
 /// </summary>
 /// <param name="value">The ZCONTRACT_ITM to remove from the collection.</param>
 public void Remove(ZCONTRACT_ITM value)
 {
     List.Remove(value);
 }