Ejemplo n.º 1
0
 public virtual Adjudication.ValuationSheetDataTable GetValuationSheetDetailsByAdjId(global::System.Nullable<global::System.Guid> AdjudicationId) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     if ((AdjudicationId.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((System.Guid)(AdjudicationId.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     Adjudication.ValuationSheetDataTable dataTable = new Adjudication.ValuationSheetDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
Ejemplo n.º 2
0
 public virtual Adjudication.ValuationSheetDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     Adjudication.ValuationSheetDataTable dataTable = new Adjudication.ValuationSheetDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }