public virtual dsCore.CurrenciesDataTable GetDataByID(int p1) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     this.Adapter.SelectCommand.Parameters[0].Value = ((int)(p1));
     dsCore.CurrenciesDataTable dataTable = new dsCore.CurrenciesDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual dsCore.CurrenciesDataTable GetDataActive() {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     dsCore.CurrenciesDataTable dataTable = new dsCore.CurrenciesDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }