svmartin
1/28/2017 - 7:44 PM

airport_employee.rb

module CheckID
  def check_id
    "Please let me see your identification."
  end
end

class AirportEmployee
end

class GovernmentAuthority < AirportEmployee
  include CheckID
end

class AirlineEmployee < AirportEmployee
end

class Management < AirlineEmployee
  include CheckID
end

class NonManagement < AirlineEmployee
end

class GroundCrew < NonManagement
end

class CounterAttendant < NonManagement
  include CheckID
end