![JAR search and dependency download from the Maven repository](/logo.png)
de.fuberlin.hcc.questionnaires.AnswerService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of questionnaires_core Show documentation
Show all versions of questionnaires_core Show documentation
Spring-Boot-Questionnaires Core
The newest version!
package de.fuberlin.hcc.questionnaires;
import de.fuberlin.hcc.questionnaires.model.Answer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class AnswerService {
private final AnswerRepository repository;
@Autowired
public AnswerService(AnswerRepository repository) {
this.repository = repository;
}
public List getAnswersByQuestionIdAndContextId(long qId, long contextId) {
return repository.getAnswersByQuestionIdAndContextId(qId, contextId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy