service.js 308 Bytes
angular.module('focaModalListaPrecio')
    .service('focaModalListaPrecioService', ['$http', 'API_ENDPOINT',
    function($http, API_ENDPOINT) {
        return {
            getListasPrecio: function() {
                return $http.get(API_ENDPOINT.URL + '/lista-precio');
            }
        };
    }]);