public List<TestataFattura> findFattureByStatoAndData(String stato, Date dataRiferimentoDa, Date dataRiferimento)
throws ContabilitaException {
List<TestataFattura> listaTestata = null;
try {
listaTestata = contabilitaDao.findFattureByStatoAndData(stato, dataRiferimentoDa, dataRiferimento);
Collections.sort(listaTestata, new TestataFatturaComparator());
} catch (ImpossibileCercareTestataFatturaException e) {
e.printStackTrace();
}
return listaTestata;
}