its simple . you forget to pass 'UserService' to controller -
Mitul Dabhi
Oct 3 '16 06:38
mainapp.controller('UController', ['$routeParams','Userservice' function BookCtrl($routeParams,UserService) {
//id will be dynamic
UserService.get({id:34
});
this.params = $routeParams;
}]);