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