14 lines
281 B
14 lines
281 B
6 months ago
|
class Form::Sales::Pages::Equity < ::Form::Page
|
||
2 years ago
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
6 months ago
|
@id = "equity"
|
||
2 years ago
|
@header = "About the price of the property"
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [
|
||
|
Form::Sales::Questions::Equity.new(nil, nil, self),
|
||
|
]
|
||
|
end
|
||
|
end
|