Merge pull request #349 from teleivo/RAD-332 RAD-332 Fix Transactions Across Service Methods
teleivo <mrteleivo@gmail.com>
13a93b8ff65ec797c24ba4de5fc9557c78d90d9d
RAD-332 Fix Transactions Across Service Methods
Spring advises to annotate only concrete classes with @Transactional
* remove @Transactional from our Service interfaces
* add class level @Transactional(readOnly=true) to our Service implemenations at class level
* override @Transactional(readOnly=true) for methods which are not-read only
* remove @Transactional from private method RadiologyOrderServiceImpl.saveRadiologyOrderEncounter
since it has no effect