service.js 355 Bytes
angular.module('focaLogisticaPedidoRuta')
    .service(
        'focaLogisticaPedidoRutaService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT
    ) {
        return {
            obtenerActividad: function(parametros) {
                return $http.post(API_ENDPOINT.URL + '/seguimiento/filtros', parametros);
            }
        };
    }]);