public boolean isCodeFoundInCodesystems(String code, List<String> codeSystems) { return vocabularyCodeService.isFoundByCodeInCodeSystems(code, new HashSet<>(codeSystems)); }
public List<Code> getByCodeInCodesystems(String code, List<String> codeSystems) { return vocabularyCodeService.getByCodeInCodeSystems(code, codeSystems); }
public boolean isCodeAndDisplayNameFoundInCodeSystems( String code, String displayName, List<String> codeSystems) { return vocabularyCodeService.isFoundByCodeAndDisplayNameInCodeSystems( code, displayName, new HashSet<>(codeSystems)); }