Submit social housing lettings and sales data (CORE)
 
 
 
 

13 lines
322 B

class Form::Sales::Pages::Buyer1Income < ::Form::Page
def initialize(id, hsh, subsection)
super
@id = "buyer_1_income"
end
def questions
@questions ||= [
Form::Sales::Questions::Buyer1IncomeKnown.new(nil, nil, self),
Form::Sales::Questions::Buyer1Income.new(nil, nil, self),
]
end
end