internal void InitVars(bool initTable) {
     this.tableBox = ((BoxDataTable)(base.Tables["Box"]));
     if ((initTable == true)) {
         if ((this.tableBox != null)) {
             this.tableBox.InitVars();
         }
     }
     this.tableDriver = ((DriverDataTable)(base.Tables["Driver"]));
     if ((initTable == true)) {
         if ((this.tableDriver != null)) {
             this.tableDriver.InitVars();
         }
     }
     this.tableGoods = ((GoodsDataTable)(base.Tables["Goods"]));
     if ((initTable == true)) {
         if ((this.tableGoods != null)) {
             this.tableGoods.InitVars();
         }
     }
 }
 private void InitClass() {
     this.DataSetName = "TranspoartSystemDataSet";
     this.Prefix = "";
     this.Namespace = "http://tempuri.org/TranspoartSystemDataSet.xsd";
     this.EnforceConstraints = true;
     this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableBox = new BoxDataTable();
     base.Tables.Add(this.tableBox);
     this.tableDriver = new DriverDataTable();
     base.Tables.Add(this.tableDriver);
     this.tableGoods = new GoodsDataTable();
     base.Tables.Add(this.tableGoods);
 }
 internal BoxRow(global::System.Data.DataRowBuilder rb) : 
         base(rb) {
     this.tableBox = ((BoxDataTable)(this.Table));
 }