public void AddRange(Ch3Etah.Core.Config.TransformationEngine[] val) 
		{
			for (int i = 0; i < val.Length; i++) 
			{
				this.Add(val[i]);
			}
		}
		public void AddRange(Ch3Etah.Core.Config.ParsingConfiguration[] val) 
		{
			for (int i = 0; i < val.Length; i++) 
			{
				this.Add(val[i]);
			}
		}
		public void Insert(int index, Ch3Etah.Metadata.OREntities.IndexField val) {
			List.Insert(index, val);
		}
		public void CopyTo(Ch3Etah.Metadata.OREntities.IndexField[] array, int index) {
			List.CopyTo(array, index);
		}
		public void AddRange(Ch3Etah.Metadata.OREntities.IndexField[] val) {
			for (int i = 0; i < val.Length; i++) {
				this.Add(val[i]);
			}
		}
		public IndexFieldCollection(Ch3Etah.Metadata.OREntities.IndexField[] val) {
			this.AddRange(val);
		}
		/// <summary>
		///    <para> Removes a specific <see cref='Ch3Etah.Core.Config.NameValuePair'/> from the 
		///    <see cref='NameValuePairCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='Ch3Etah.Core.Config.NameValuePair'/> to remove from the <see cref='NameValuePairCollection'/> .</param>
		/// <returns><para>None.</para></returns>
		/// <exception cref='System.ArgumentException'><paramref name='value'/> is not found in the Collection. </exception>
		public void Remove(Ch3Etah.Core.Config.NameValuePair val)
		{
			List.Remove(val);
		}
		/// <summary>
		///    <para>Returns the index of a <see cref='Ch3Etah.Core.Config.NameValuePair'/> in 
		///       the <see cref='NameValuePairCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='Ch3Etah.Core.Config.NameValuePair'/> to locate.</param>
		/// <returns>
		/// <para>The index of the <see cref='Ch3Etah.Core.Config.NameValuePair'/> of <paramref name='value'/> in the 
		/// <see cref='NameValuePairCollection'/>, if found; otherwise, -1.</para>
		/// </returns>
		/// <seealso cref='NameValuePairCollection.Contains'/>
		public int IndexOf(Ch3Etah.Core.Config.NameValuePair val)
		{
			return List.IndexOf(val);
		}
		public void Insert(int index, Ch3Etah.Core.CodeGen.PackageLib.Template val) {
			List.Insert(index, val);
		}
		public int IndexOf(Ch3Etah.Core.CodeGen.PackageLib.Template val) {
			return List.IndexOf(val);
		}
		public void CopyTo(Ch3Etah.Core.CodeGen.PackageLib.Template[] array, int index) {
			List.CopyTo(array, index);
		}
		public bool Contains(Ch3Etah.Core.CodeGen.PackageLib.Template val) {
			return List.Contains(val);
		}
		public void AddRange(Ch3Etah.Core.CodeGen.PackageLib.Template[] val) {
			for (int i = 0; i < val.Length; i++) {
				this.Add(val[i]);
			}
		}
		public int Add(Ch3Etah.Core.CodeGen.PackageLib.Template val){
			return List.Add(val);
		}
		public TemplateCollection(Ch3Etah.Core.CodeGen.PackageLib.Template[] val) {
			this.AddRange(val);
		}
		/// <summary>
		/// <para>Gets a value indicating whether the 
		///    <see cref='NameValuePairCollection'/> contains the specified <see cref='Ch3Etah.Core.Config.NameValuePair'/>.</para>
		/// </summary>
		/// <param name='value'>The <see cref='Ch3Etah.Core.Config.NameValuePair'/> to locate.</param>
		/// <returns>
		/// <para><see langword='true'/> if the <see cref='Ch3Etah.Core.Config.NameValuePair'/> is contained in the collection; 
		///   otherwise, <see langword='false'/>.</para>
		/// </returns>
		/// <seealso cref='NameValuePairCollection.IndexOf'/>
		public bool Contains(Ch3Etah.Core.Config.NameValuePair val)
		{
			return List.Contains(val);
		}
		/// <summary>
		/// <para>Copies the <see cref='NameValuePairCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 
		///    specified index.</para>
		/// </summary>
		/// <param name='array'><para>The one-dimensional <see cref='System.Array'/> that is the destination of the values copied from <see cref='NameValuePairCollection'/> .</para></param>
		/// <param name='index'>The index in <paramref name='array'/> where copying begins.</param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <exception cref='System.ArgumentException'><para><paramref name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref='NameValuePairCollection'/> is greater than the available space between <paramref name='arrayIndex'/> and the end of <paramref name='array'/>.</para></exception>
		/// <exception cref='System.ArgumentNullException'><paramref name='array'/> is <see langword='null'/>. </exception>
		/// <exception cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less than <paramref name='array'/>'s lowbound. </exception>
		/// <seealso cref='System.Array'/>
		public void CopyTo(Ch3Etah.Core.Config.NameValuePair[] array, int index)
		{
			List.CopyTo(array, index);
		}
		public void Remove(Ch3Etah.Core.CodeGen.PackageLib.Template val) {
			List.Remove(val);
		}
		/// <summary>
		/// <para>Inserts a <see cref='Ch3Etah.Core.Config.NameValuePair'/> into the <see cref='NameValuePairCollection'/> at the specified index.</para>
		/// </summary>
		/// <param name='index'>The zero-based index where <paramref name='value'/> should be inserted.</param>
		/// <param name=' value'>The <see cref='Ch3Etah.Core.Config.NameValuePair'/> to insert.</param>
		/// <returns><para>None.</para></returns>
		/// <seealso cref='NameValuePairCollection.Add'/>
		public void Insert(int index, Ch3Etah.Core.Config.NameValuePair val)
		{
			List.Insert(index, val);
		}
		public LinkCollection(Ch3Etah.Metadata.OREntities.Link[] val) {
			this.AddRange(val);
		}
		/// <summary>
		///     <para>
		///       Initializes a new instance of <see cref='NameValuePairCollection'/> containing any array of <see cref='Ch3Etah.Core.Config.NameValuePair'/> objects.
		///    </para>
		/// </summary>
		/// <param name='value'>
		///       A array of <see cref='Ch3Etah.Core.Config.NameValuePair'/> objects with which to intialize the collection
		/// </param>
		public NameValuePairCollection(Ch3Etah.Core.Config.NameValuePair[] val)
		{
			this.AddRange(val);
		}
		public int Add(Ch3Etah.Metadata.OREntities.Link val){
			return List.Add(val);
		}
		public int Add(Ch3Etah.Metadata.OREntities.IndexField val){
			return List.Add(val);
		}
		public bool Contains(Ch3Etah.Metadata.OREntities.Link val) {
			return List.Contains(val);
		}
		public bool Contains(Ch3Etah.Metadata.OREntities.IndexField val) {
			return List.Contains(val);
		}
		public void Remove(Ch3Etah.Metadata.OREntities.Link val) {
			List.Remove(val);
		}
		public int IndexOf(Ch3Etah.Metadata.OREntities.IndexField val) {
			return List.IndexOf(val);
		}
		/// <summary>
		///    <para>Adds a <see cref='Ch3Etah.Core.Config.NameValuePair'/> with the specified value to the 
		///    <see cref='NameValuePairCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='Ch3Etah.Core.Config.NameValuePair'/> to add.</param>
		/// <returns>
		///    <para>The index at which the new element was inserted.</para>
		/// </returns>
		/// <seealso cref='NameValuePairCollection.AddRange'/>
		public int Add(Ch3Etah.Core.Config.NameValuePair val)
		{
			return List.Add(val);
		}
		public void Remove(Ch3Etah.Metadata.OREntities.IndexField val) {
			List.Remove(val);
		}
		/// <summary>
		/// <para>Copies the elements of an array to the end of the <see cref='NameValuePairCollection'/>.</para>
		/// </summary>
		/// <param name='value'>
		///    An array of type <see cref='Ch3Etah.Core.Config.NameValuePair'/> containing the objects to add to the collection.
		/// </param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <seealso cref='NameValuePairCollection.Add'/>
		public void AddRange(Ch3Etah.Core.Config.NameValuePair[] val)
		{
			for (int i = 0; i < val.Length; i++) 
			{
				this.Add(val[i]);
			}
		}