Another way to do it:
Expose the service on $rootScope:
$rootScope.service = service;
and then in a template:
Hello {{service.getUsername();}}
You can do this on app.run, and you will get the service in all the views of your app. You could use this method for Authentication services.