Ejemplo n.º 1
0
 private void InitClass() {
     this.DataSetName = "Category";
     this.Prefix = "";
     this.Namespace = "http://tempuri.org/Category.xsd";
     this.EnforceConstraints = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableCategories = new CategoriesDataTable();
     base.Tables.Add(this.tableCategories);
     this.tableChangeLog = new ChangeLogDataTable();
     base.Tables.Add(this.tableChangeLog);
 }
Ejemplo n.º 2
0
 public ChangeLogRow(System.Data.DataRowBuilder rb) : 
         base(rb) {
     this.tableChangeLog = ((ChangeLogDataTable)(this.Table));
 }
Ejemplo n.º 3
0
 public void InitVars(bool initTable) {
     this.tableCategories = ((CategoriesDataTable)(base.Tables["Categories"]));
     if ((initTable == true)) {
         if ((this.tableCategories != null)) {
             this.tableCategories.InitVars();
         }
     }
     this.tableChangeLog = ((ChangeLogDataTable)(base.Tables["ChangeLog"]));
     if ((initTable == true)) {
         if ((this.tableChangeLog != null)) {
             this.tableChangeLog.InitVars();
         }
     }
 }