angular.module('appWrapperDemo') .factory('API_ENDPOINT', [ '$http', '$localStorage', 'ENDPOINT_BASE', function($http, $localStorage, ENDPOINT_BASE) { return { URL: 'http://localhost:9900', ENDPOINT_BASE: ENDPOINT_BASE, setUrl: function(url) { this.URL = url; $localStorage.urlEndPoint = url; }, getUrl: function() { return $http.get(this.ENDPOINT_BASE + '/terminal/consultar'); } }; }]);