public RehabilitationShortVoCollection listByCareContext(Integer idCareContext) { if (idCareContext != null) { DomainFactory factory = getDomainFactory(); List RespTrList = factory.find(" from Rehabilitation rt where rt.clinicalContact.careContext.id = :ccId order by rt.authoringDateTime", new String[]{"ccId"}, new Object[]{idCareContext}); return RehabilitationShortVoAssembler.createRehabilitationShortVoCollectionFromRehabilitation(RespTrList); } return null; }