Method: Fe::QuestionSet#save

Defined in:
app/models/fe/question_set.rb

#saveObject



48
49
50
51
52
53
54
# File 'app/models/fe/question_set.rb', line 48

def save
  AnswerSheet.transaction do
    @questions.each do |question|
      question.save_response(@answer_sheet)
    end
  end
end