app.service('user', [function () {
this.value = null;
this.set = function(value) {
this.value = value;
};
this.get = function() {
return this.value;
};
}]);
app.service('user', [function () {
this.value = null;
this.set = function(value) {
this.value = value;
};
this.get = function() {
return this.value;
};
}]);