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