service.js
447 Bytes
angular.module('focaModalProveedor')
.service('focaModalProveedorService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
return {
getProveedores: function(json) {
return $http.post(API_ENDPOINT.URL + '/proveedor', json);
},
getTransportistas: function(json) {
return $http.get(API_ENDPOINT.URL + '/transportista', json);
}
};
}]);