Example #1
0
 public virtual DataSet.TokenDataTable GetDataByBody(string Body) {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     if ((Body == null)) {
         throw new global::System.ArgumentNullException("Body");
     }
     else {
         this.Adapter.SelectCommand.Parameters[0].Value = ((string)(Body));
     }
     DataSet.TokenDataTable dataTable = new DataSet.TokenDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
Example #2
0
 public virtual DataSet.TokenDataTable GetDataBySubscriberId(long SubscriberId) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     this.Adapter.SelectCommand.Parameters[0].Value = ((long)(SubscriberId));
     DataSet.TokenDataTable dataTable = new DataSet.TokenDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
Example #3
0
 public virtual DataSet.TokenDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     DataSet.TokenDataTable dataTable = new DataSet.TokenDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }