service.js 386 Bytes
angular.module('focaModalVendedores')
    .service('focaVendedoresService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
        return {
            getVendedores: function(filters) {
                // TODO ACOMODAR PARA TURNOS AHORA 1 HARDCODEO
                return $http.post(API_ENDPOINT.URL + '/vendedor/list', {nombre: filters});
            }
        };
    }]);