service.js
383 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 + '/vendedores', {nombre: filters});
}
};
}]);