コード例 #1
0
 public virtual dsCore.CompaniesDataTable GetDataDeveloper() {
     this.Adapter.SelectCommand = this.CommandCollection[5];
     dsCore.CompaniesDataTable dataTable = new dsCore.CompaniesDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
コード例 #2
0
 public virtual dsCore.CompaniesDataTable GetDataVendorActive() {
     this.Adapter.SelectCommand = this.CommandCollection[8];
     dsCore.CompaniesDataTable dataTable = new dsCore.CompaniesDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
コード例 #3
0
 public virtual dsCore.CompaniesDataTable GetDataByID(int p1) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     this.Adapter.SelectCommand.Parameters[0].Value = ((int)(p1));
     dsCore.CompaniesDataTable dataTable = new dsCore.CompaniesDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }