angular.module('focaModalCotizacion')
.service('focaModalCotizacionService', [
'$http',
'API_ENDPOINT',
function($http, API_ENDPOINT) {
return {
getCotizaciones: function(idMoneda) {
return $http.get(API_ENDPOINT.URL + '/moneda/' + idMoneda);
}
};
}
]);