示例#1
0
 private void InitClassBase()
 {
     this.DataSetName = "KONTODataSet";
     this.Namespace   = "http://www.tempuri.org/KONTO";
     this.tableKONTO  = new KONTODataTable();
     this.Tables.Add(this.tableKONTO);
     this.tableKONTO.KONTColumn.Expression = "IDKONTO+' | '+NAZIVKONTO";
 }
示例#2
0
 internal void InitVars(bool initTable)
 {
     this.tableKONTO = (KONTODataTable)this.Tables["KONTO"];
     if (initTable && (this.tableKONTO != null))
     {
         this.tableKONTO.InitVars();
     }
 }
示例#3
0
 private void InitClass()
 {
     this.DataSetName             = "dsKonto";
     this.Prefix                  = "";
     this.Namespace               = "http://tempuri.org/dsKonto.xsd";
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableKONTO              = new KONTODataTable();
     base.Tables.Add(this.tableKONTO);
 }