Search in sources :

Example 1 with QuestionTypeModel

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;
}
Also used : QuestionTypeModelInterface(easytests.core.models.QuestionTypeModelInterface) QuestionTypeModel(easytests.core.models.QuestionTypeModel)

Aggregations

QuestionTypeModel (easytests.core.models.QuestionTypeModel)1 QuestionTypeModelInterface (easytests.core.models.QuestionTypeModelInterface)1