 | CommonGetFinanceManagerIdentificationRequirements Method |
Batched version: determines the finance manager identification requirement for multiple programs in a single DB round-trip.
Falls back to per-item calls if the sproc does not yet support the table-valued parameters.
Namespace:
IAS
Assembly:
Common (in Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Dictionary<int, bool> GetFinanceManagerIdentificationRequirements(
string masterDealerID,
DataTable programIDs,
DataTable comboIDs
)
Public Shared Function GetFinanceManagerIdentificationRequirements (
masterDealerID As String,
programIDs As DataTable,
comboIDs As DataTable
) As Dictionary(Of Integer, Boolean)
public static function GetFinanceManagerIdentificationRequirements(
masterDealerID : String,
programIDs : DataTable,
comboIDs : DataTable
) : Dictionary<int, boolean>
IAS.Common.GetFinanceManagerIdentificationRequirements = function(masterDealerID, programIDs, comboIDs);
Parameters
- masterDealerID
- Type: SystemString
The master dealer ID. - programIDs
- Type: System.DataDataTable
A ListOfIDs-style DataTable containing program IDs (single column "ID"). - comboIDs
- Type: System.DataDataTable
A ListOfIDs-style DataTable containing combo IDs (single column "ID").
Return Value
Type:
DictionaryInt32,
BooleanDictionary keyed by the resolved ProgramOrComboID with the boolean result.
See Also