Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Last active August 29, 2015 14:22
Show Gist options
  • Save thenickcox/1caf496d84a090bf420e to your computer and use it in GitHub Desktop.
Save thenickcox/1caf496d84a090bf420e to your computer and use it in GitHub Desktop.
person_profile_service.rb
module Services
class PersonProfileService
def get_overview(person_id)
{
employer_id: 1,
first_name: 'Michael',
last_name: 'Jackson',
is_registered: true,
mobile_phone: '223-123-1234',
avatar_url: 'http://placehold.it/120x120'
}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment