public virtual DataSet.SubscriberDataTable GetDataByAuthKey(string AuthenticationKey) {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     if ((AuthenticationKey == null)) {
         throw new global::System.ArgumentNullException("AuthenticationKey");
     }
     else {
         this.Adapter.SelectCommand.Parameters[0].Value = ((string)(AuthenticationKey));
     }
     DataSet.SubscriberDataTable dataTable = new DataSet.SubscriberDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual DataSet.SubscriberDataTable GetDataByTitleId(long TitleId) {
     this.Adapter.SelectCommand = this.CommandCollection[3];
     this.Adapter.SelectCommand.Parameters[0].Value = ((long)(TitleId));
     DataSet.SubscriberDataTable dataTable = new DataSet.SubscriberDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual DataSet.SubscriberDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     DataSet.SubscriberDataTable dataTable = new DataSet.SubscriberDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }