use of easytests.core.models.QuestionModel in project easy-tests by malinink.
the class QuestionsService method map.
private QuestionModelInterface map(QuestionEntity questionEntity) {
if (questionEntity == null) {
return null;
}
final QuestionModelInterface questionModel = new QuestionModel();
questionModel.map(questionEntity);
return questionModel;
}
use of easytests.core.models.QuestionModel in project easy-tests by malinink.
the class QuestionsServiceTest method mapQuestionModel.
private QuestionModelInterface mapQuestionModel(QuestionEntity questionEntity) {
final QuestionModelInterface questionModel = new QuestionModel();
questionModel.map(questionEntity);
return questionModel;
}
Aggregations