service.js 311 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 angular.module('focaModalVendedores') .service('focaVendedoresService', ['$http', function($http) { var configRoute ='http://localhost:9900'; return { getVendedores: function(json) { return $http.post(configRoute + '/vendedores', json); } } }])