public virtual VendorOffence.HighCourtAppealDataTable GetOffenceDetailsByHighCourtFileNo(string HighCourtFileNo) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     if ((HighCourtFileNo == null)) {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = ((string)(HighCourtFileNo));
     }
     VendorOffence.HighCourtAppealDataTable dataTable = new VendorOffence.HighCourtAppealDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual VendorOffence.HighCourtAppealDataTable GetHighCourtAppealData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     VendorOffence.HighCourtAppealDataTable dataTable = new VendorOffence.HighCourtAppealDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }