Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Created June 12, 2015 14:57
Show Gist options
  • Save thenickcox/a7ea1c6d6aec789bf095 to your computer and use it in GitHub Desktop.
Save thenickcox/a7ea1c6d6aec789bf095 to your computer and use it in GitHub Desktop.
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