Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created March 15, 2017 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmussak/982e0871a27bf16e05bb98508c746bf5 to your computer and use it in GitHub Desktop.
Save vmussak/982e0871a27bf16e05bb98508c746bf5 to your computer and use it in GitHub Desktop.
pg.request()
.inputMany('Jorge' /*pNome*/, 'Maria das Dores' /*pNomeDaMae*/)
.execute('autenticacao.BuscarUsuario', (err, data) => {
if (err)
return console.log(err);
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment