class ContactDecorator < ApplicationDecorator
  delegate :name, to: :company, prefix: true, allow_nil: true
  delegate :name, to: :title, prefix: true, allow_nil: true
  delegate :name, to: :country, prefix: true, allow_nil: true
  delegate :address, to: :primary_email_address, allow_nil: true, prefix: true

  def zip_code
    zip
  end
end
