service.js
556 Bytes
angular.module('focaBusquedaCliente')
.service('focaBusquedaClienteService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
return {
obtenerClientesPorNombreOCuit: function(nombreOCuit, idVendedor) {
return $http.post(API_ENDPOINT.URL + '/cliente',
{nombreOCuit: nombreOCuit, idVendedor: idVendedor});
},
guardarCliente: function(cliente) {
return $http.post(API_ENDPOINT.URL + '/cliente', {cliente: cliente});
}
};
}]);