LDEV-3316: Get rid of HibernateTemplate and HibernateDaoSupport usage in set of LAMS DAO types from lams_tool_assesment. Change assesment DAOs hierarchy super type to LAMSBaseDAO.
LDEV-3316: Get rid of HibernateTemplate and HibernateDaoSupport in set of LAMS DAO types from lams_common. Alter DAO references in set of services to code against interfaces not implementations.
LDEV-3316: Register PersistenceExceptionTranslationPostProcessor bean. Together with HibernateTemplate we lose automatic exception translation from hibernate's to spring's DataAccessException exception hierarchy. This PostProcessor is responsible for handling such conversion in all java types annotated with @Repository stereotype annotation.
LDEV-3316: Introduce LAMSBaseDAO. This is basically a copy of BaseDAO type but not extending HibernateTemplate. In order to get rid of HibernateTemplate, in next steps: subtypes will be moved from BaseDAO type hierarchy into LAMSBaseDAO hierarchy.