public override global::System.Data.DataTable Clone()
            {
                ManDataTable cln = ((ManDataTable)(base.Clone()));

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