public override System.Data.DataTable Clone()
            {
                dtCustomerListDataTable cln = ((dtCustomerListDataTable)(base.Clone()));

                cln.InitVars();
                return(cln);
            }
 private void InitClass()
 {
     this.DataSetName             = "dsCustomerEmail";
     this.Prefix                  = "";
     this.Namespace               = "http://tempuri.org/dsCustomerEmail.xsd";
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tabledtCustomerList     = new dtCustomerListDataTable();
     base.Tables.Add(this.tabledtCustomerList);
 }
 internal void InitVars(bool initTable)
 {
     this.tabledtCustomerList = ((dtCustomerListDataTable)(base.Tables["dtCustomerList"]));
     if ((initTable == true))
     {
         if ((this.tabledtCustomerList != null))
         {
             this.tabledtCustomerList.InitVars();
         }
     }
 }
 internal dtCustomerListRow(System.Data.DataRowBuilder rb) :
     base(rb)
 {
     this.tabledtCustomerList = ((dtCustomerListDataTable)(this.Table));
 }