use of easytests.core.models.QuestionTypeModel in project easy-tests by malinink.
the class QuestionTypesService method map.
private QuestionTypeModelInterface map(QuestionTypeEntity questionTypeEntity) {
if (questionTypeEntity == null) {
return null;
}
final QuestionTypeModelInterface questionTypeModel = new QuestionTypeModel();
questionTypeModel.map(questionTypeEntity);
return questionTypeModel;
}
Aggregations