12 lines
301 B
12 lines
301 B
2 years ago
|
class Form::Lettings::Pages::IncomeKnown < ::Form::Page
|
||
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
|
@id = "income_known"
|
||
|
@header = "Household’s combined income after tax"
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [Form::Lettings::Questions::NetIncomeKnown.new(nil, nil, self)]
|
||
|
end
|
||
|
end
|