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

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