Package is.bokun.dtos

Examples of is.bokun.dtos.QuestionAnswerPairDto


    public String group;
  public List<BookingAnswerDto> answers = new ArrayList<>();
    private List<QuestionAnswerPairDto> questionsAndAnswers = new ArrayList<>();

    public void addPair(QuestionDto q, BookingAnswerWithIdDto a) {
        questionsAndAnswers.add(new QuestionAnswerPairDto(q, a));
    }
View Full Code Here

TOP

Related Classes of is.bokun.dtos.QuestionAnswerPairDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.