public HomeVisitShortVoCollection listHomeVisitAccContacts(Integer idCareContext) { if (idCareContext != null) { DomainFactory factory = getDomainFactory(); List RespTrList = factory.find(" from HomeVisit hv where hv.careContext.id = :ccId order by hv.authoringInformation", new String[]{"ccId"}, new Object[]{idCareContext}); return HomeVisitShortVoAssembler.createHomeVisitShortVoCollectionFromHomeVisit(RespTrList); } return null; }