/** * WDEV-13587 * List Hydrotherapy records, including RIE records */ public HydrotherapyShortVoCollection listHydroForCareContext(CareContextRefVo careContextRefVo) { if (careContextRefVo == null) throw new DomainRuntimeException("Cannot list CareContextRefVo is null"); String query = "from Hydrotherapy hr where hr.clinicalContact.careContext.id = :RCC"; return HydrotherapyShortVoAssembler.createHydrotherapyShortVoCollectionFromHydrotherapy(getDomainFactory().find(query, "RCC", careContextRefVo.getID_CareContext())); }