angular.module('myModule')
.service('Person', function() {
var name = 'Default';
var listCount = 0;
this.getName = function() {
return name;
};
this.setName = function(Name) {
name = Name;
};
this.getListCount = function() {
return listCount;
};
this.setListCount = function(ListCount) {
listCount = ListCount;
};
})