Created
June 12, 2015 14:57
-
-
Save thenickcox/a7ea1c6d6aec789bf095 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Employment | |
module Services | |
class EmployerInfoService | |
def self.get_employment_info_for(patient_id) | |
{ | |
employer_name: 'Acme Fireworks Co.', | |
employer_address: '123 Anywhere St.', | |
employer_phone: '206-555-3535', | |
employer_industry: 'Entertainment' | |
} | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment