angular.module('focaModalPrecioCondicion') .service('focaModalPrecioCondicionService', [ '$http', 'API_ENDPOINT', function($http, API_ENDPOINT) { return { getPreciosCondiciones: function() { return $http.get(API_ENDPOINT.URL + '/precio-condicion'); }, getPlazosByIdPrecioCondicion: function(id) { return $http.get(API_ENDPOINT.URL + '/plazo-pago/precio-condicion/' + id); }, getPreciosCondicionesPlazosPagos: function() { return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago'); } }; } ]);