public virtual dsLanguageData.SoundClipDataTable GetDataByID(int id) {
     this.Adapter.SelectCommand = this.CommandCollection[3];
     this.Adapter.SelectCommand.Parameters[0].Value = ((int)(id));
     dsLanguageData.SoundClipDataTable dataTable = new dsLanguageData.SoundClipDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual dsLanguageData.SoundClipDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     dsLanguageData.SoundClipDataTable dataTable = new dsLanguageData.SoundClipDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }