Object[] args = { numeroMutuo, dataCalcoloEstinzione, dataCalcoloEstinzione };
SqlRowSet rs = getJdbcTemplate().queryForRowSet(query.toString(), args);
if (rs != null) {
listace = new ArrayList<StrutturaCalcoloEstinzione>(0);
while( rs.next() ){
StrutturaCalcoloEstinzione ce = new StrutturaCalcoloEstinzione();
ce.setBaseCalcoloPenale(rs.getString(1));
ce.setTassoEstinzioneAnticipata(rs.getDouble(2));
ce.setTipoTrattamento(rs.getString(3));
listace.add(ce);
}
}
return listace;
}