Exemplo n.º 1
0
 private void InitClass()
 {
     base.DataSetName             = "labtechDataSet";
     base.Prefix                  = "";
     base.Namespace               = "http://tempuri.org/labtechDataSet.xsd";
     base.EnforceConstraints      = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tablecomputers          = new labtechDataSet.computersDataTable();
     base.Tables.Add(this.tablecomputers);
 }
Exemplo n.º 2
0
 internal void InitVars(bool initTable)
 {
     this.tablecomputers = (labtechDataSet.computersDataTable)base.Tables["computers"];
     if (initTable)
     {
         if (this.tablecomputers != null)
         {
             this.tablecomputers.InitVars();
         }
     }
 }
Exemplo n.º 3
0
 internal computersRow(DataRowBuilder rb) : base(rb)
 {
     this.tablecomputers = (labtechDataSet.computersDataTable)base.Table;
 }
Exemplo n.º 4
0
 public override DataTable Clone()
 {
     labtechDataSet.computersDataTable _computersDataTable = (labtechDataSet.computersDataTable)base.Clone();
     _computersDataTable.InitVars();
     return(_computersDataTable);
 }