public virtual Adjudication.ValuationFormDataTable SelectValuationFormDetailsByAdjId(global::System.Nullable<global::System.Guid> AdjudicationId) { this.Adapter.SelectCommand = this.CommandCollection[9]; 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.ValuationFormDataTable dataTable = new Adjudication.ValuationFormDataTable(); this.Adapter.Fill(dataTable); return dataTable; }
public virtual Adjudication.ValuationFormDataTable GetData() { this.Adapter.SelectCommand = this.CommandCollection[0]; Adjudication.ValuationFormDataTable dataTable = new Adjudication.ValuationFormDataTable(); this.Adapter.Fill(dataTable); return dataTable; }