/// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(Z00_BURO_IQ value)
 {
     return(List.Contains(value));
 }
 /// <summary>
 /// Inserts a Z00_BURO_IQ 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 Z00_BURO_IQ to insert.</param>
 public void Insert(int index, Z00_BURO_IQ value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Searches for the specified Z00_BURO_IQ and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(Z00_BURO_IQ value)
 {
     return(List.IndexOf(value));
 }
 /// <summary>
 /// Removes the first occurrence of the specified Z00_BURO_IQ from the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to remove from the collection.</param>
 public void Remove(Z00_BURO_IQ value)
 {
     List.Remove(value);
 }
 /// <summary>
 /// Adds a Z00_BURO_IQ to the end of the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to be added to the end of the collection.</param>
 /// <returns>The index of the newZ00_BURO_IQ.</returns>
 public int Add(Z00_BURO_IQ value)
 {
     return(List.Add(value));
 }
 /// <summary>
 /// Copies the contents of the Z00_BURO_IQTable 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(Z00_BURO_IQ[] array, int index)
 {
     List.CopyTo(array, index);
 }
 public int IQ_respuestaSeccionConsultasRepCredito(int estadoInc)
 {
     bool salir = false;
         int repeticiones=0;
         while(salir == false && estadoInc < etiSecc.Count)
         {
             switch(etiSecc[estadoInc].ToString())
             {
                 case "IQ":
                     if(repeticiones==0)
                     {
                         seccionConsultasRepCredito.Fecha_Consulta = cambiaFechaAFormatoABAP(valSecc[estadoInc].ToString());
                         repeticiones++;
                     }
                     else
                     {
                         seccionConsultasRepCreditoTable.Add(seccionConsultasRepCredito);
                         seccionConsultasRepCredito = new Z00_BURO_IQ();
                         //seccionConsultasRepCredito.Fecha_Consulta = valSecc[estadoInc].ToString();
                         seccionConsultasRepCredito.Fecha_Consulta = cambiaFechaAFormatoABAP(valSecc[estadoInc].ToString());
                         repeticiones++;
                     }
                     break;
                 case "00":
                     seccionConsultasRepCredito.Id_Buro = valSecc[estadoInc].ToString();
                     break;
                 case "01":
                     seccionConsultasRepCredito.Otorgante= valSecc[estadoInc].ToString();
                     break;
                 case "02":
                     seccionConsultasRepCredito.Nombre_Otorgante= valSecc[estadoInc].ToString();
                     break;
                 case "03":
                     seccionConsultasRepCredito.Telefono= valSecc[estadoInc].ToString();
                     break;
                 case "04":
                     seccionConsultasRepCredito.Tipo_Contrato= valSecc[estadoInc].ToString();
                     break;
                 case "05":
                     seccionConsultasRepCredito.Moneda= valSecc[estadoInc].ToString();
                     break;
                 case "06":
                     seccionConsultasRepCredito.Importe= valSecc[estadoInc].ToString();
                     break;
                 case "07":
                     seccionConsultasRepCredito.Tipo_Respon= valSecc[estadoInc].ToString();
                     break;
                 case "08":
                     seccionConsultasRepCredito.Consumidor_Nuevo= valSecc[estadoInc].ToString();
                     break;
                 case "09":
                     if(valSecc[estadoInc].ToString().Length==1)
                     {
                         seccionConsultasRepCredito.Sic= valSecc[estadoInc].ToString();
                     }
                     else
                     {
                         seccionConsultasRepCredito.Resultado= valSecc[estadoInc].ToString();
                     }
                     break;
                 default:
                     salir= true;
                     estadoInc=estadoInc-2;
                     break;
             }
             estadoInc++;
         }
         seccionConsultasRepCreditoTable.Add(seccionConsultasRepCredito);
         return estadoInc;
 }
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(Z00_BURO_IQ value)
 {
     return List.Contains(value);
 }
 /// <summary>
 /// Adds a Z00_BURO_IQ to the end of the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to be added to the end of the collection.</param>
 /// <returns>The index of the newZ00_BURO_IQ.</returns>
 public int Add(Z00_BURO_IQ value)
 {
     return List.Add(value);
 }
 /// <summary>
 /// Removes the first occurrence of the specified Z00_BURO_IQ from the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to remove from the collection.</param>
 public void Remove(Z00_BURO_IQ value)
 {
     List.Remove(value);
 }
 /// <summary>
 /// Inserts a Z00_BURO_IQ 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 Z00_BURO_IQ to insert.</param>
 public void Insert(int index, Z00_BURO_IQ value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Searches for the specified Z00_BURO_IQ and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_IQ to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(Z00_BURO_IQ value)
 {
     return List.IndexOf(value);
 }