Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
428 B

class Form::Sales::Questions::Person2Age < ::Form::Question
def initialize(id, hsh, page)
super
@check_answer_label = "Person 2’s age"
@header = "Age"
@type = "numeric"
@page = page
@width = 3
@inferred_check_answers_value = hsh[:inferred_check_answers_value]
@hidden_in_check_answers = hsh[:hidden_in_check_answers]
@check_answers_card_number = hsh[:check_answers_card_number]
end
end