/** * WDEV-13598 * List records by Care Context and take into account the RIE records. */ public ElectrotherapyUltrasoundShortVoCollection listByCareContext(CareContextLiteVo voCareContext) { String hql = "from ElectrotherapyUltrasound eu where eu.clinicalContact.careContext.id = :CC"; return ElectrotherapyUltrasoundShortVoAssembler.createElectrotherapyUltrasoundShortVoCollectionFromElectrotherapyUltrasound(getDomainFactory().find(hql, "CC", voCareContext.getID_CareContext())); }