Method: Fe::QuestionSet#save

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

#saveObject



42
43
44
45
46
47
48
# File 'app/models/fe/question_set.rb', line 42

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