angular.module('focaNombreEmpresa') .service('focaNombreEmpresaService', [ '$http', 'API_ENDPOINT', function($http, API_ENDPOINT) { return { getEmpresa: function(id) { return $http.get(API_ENDPOINT.URL + '/empresa/' + id); } }; } ]);