service.js
414 Bytes
angular.module('focaGestionTerminal')
.factory('gestionTerminalService', ['endpoint', '$http', function(endpoint, $http) {
return {
getEmpresas: function() {
return $http.get(endpoint + '/empresa/listar');
},
insertEmpresa: function(empresa) {
return $http.post(endpoint + '/empresa/crear', empresa);
}
}
}]);