public List<Sborrow> findBySaccount(String saccount){
log.debug("finding all Sborrow instances");
try {
String queryString = "from Sborrow sb where sb.id.saccount = '"+saccount+"' ";
return getHibernateTemplate().find(queryString);
} catch (RuntimeException re) {
log.error("find all failed", re);
throw re;
}
}