@Mapper(config = MapperConfiguration.class)
public abstract class CvInfoMapperLanguage {
@Autowired
protected MyService service;
@Mappings({
@Mapping(target = "field", expression = "java(service.map(entity.getLanguage(), language))")
})
public abstract DTO map(Entity entity, Language language);
}