public virtual Adjudication.DocumentChecklistTableDataTable GetDocumentDetailByValFormId(global::System.Nullable<global::System.Guid> ValuationFormId) {
     this.Adapter.SelectCommand = this.CommandCollection[3];
     if ((ValuationFormId.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((System.Guid)(ValuationFormId.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     Adjudication.DocumentChecklistTableDataTable dataTable = new Adjudication.DocumentChecklistTableDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual Adjudication.DocumentChecklistTableDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     Adjudication.DocumentChecklistTableDataTable dataTable = new Adjudication.DocumentChecklistTableDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }