public override System.Data.DataTable Clone() { CustomDividendDataTable cln = ((CustomDividendDataTable)(base.Clone())); cln.InitVars(); return(cln); }
private void InitClass() { this.DataSetName = "DataSet1"; this.Prefix = ""; this.Namespace = "http://www.tempuri.org/DataSet1.xsd"; this.EnforceConstraints = true; this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; this.tableCustomDividend = new CustomDividendDataTable(); base.Tables.Add(this.tableCustomDividend); }
internal void InitVars(bool initTable) { this.tableCustomDividend = ((CustomDividendDataTable)(base.Tables["CustomDividend"])); if ((initTable == true)) { if ((this.tableCustomDividend != null)) { this.tableCustomDividend.InitVars(); } } }
internal CustomDividendRow(System.Data.DataRowBuilder rb) : base(rb) { this.tableCustomDividend = ((CustomDividendDataTable)(this.Table)); }