return _currencyDetails;
}
private void loadCurrencyDetails(CurrencyDetailsType[] details) {
if(_CurrencyDetailsByCurrency.isEmpty()) {
for(int i = 0; i < details.length; i++) {
CurrencyDetailsType currency = details[i];
_CurrencyDetailsByCurrency.put(currency.getCurrency(), currency);
}
}
}