.add( Restrictions.eq("numeroAgencia", conta.getNumeroAgencia()))
.add( Restrictions.eq("senha", conta.getSenha()))
.add( Restrictions.eq("fraseSecreta", conta.getFraseSecreta()))
.uniqueResult();
} catch (Exception e) {
throw new DaoException(e);
}
}