List<SecuritiesCurrentMarketPrice> priceList = getAllSecuritiesCurrentMarketPrice();
HashMap<String, SecuritiesCurrentMarketPrice> priceMap = new HashMap<String, SecuritiesCurrentMarketPrice>();
for (SecuritiesCurrentMarketPrice price: priceList)
{
SecuritiesInformation info = isinInformationMap.get(price.getIsin());
if (info != null)
priceMap.put( info.getAsset(), price);
}
List<SecuritiesTransaction> transactions = getAllEntries(SecuritiesTransaction.class, "order by transactionDate");
ArrayList<SummarizedTransaction<SecuritiesTransaction>> result = new ArrayList<SummarizedTransaction<SecuritiesTransaction>>(transactions.size());