class Form::Sales::Pages::Buyer1EthnicGroup < ::Form::Page
  def initialize(id, hsh, subsection)
    super
    @id = "buyer_1_ethnic_group"
    @depends_on = [
      {
        "privacynotice" => 1,
      },
      {
        "noint" => 1,
      },
    ]
  end

  def questions
    @questions ||= [
      Form::Sales::Questions::Buyer1EthnicGroup.new(nil, nil, self),
    ]
  end
end