public virtual dsLanguageData.PictureDataTable GetDataByCardID(int cardID) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     this.Adapter.SelectCommand.Parameters[0].Value = ((int)(cardID));
     dsLanguageData.PictureDataTable dataTable = new dsLanguageData.PictureDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual dsLanguageData.PictureDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     dsLanguageData.PictureDataTable dataTable = new dsLanguageData.PictureDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }