Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Last active June 28, 2021 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 dsibinski/91250a9da08780129b7dd4e7b056f62c to your computer and use it in GitHub Desktop.
Save dsibinski/91250a9da08780129b7dd4e7b056f62c to your computer and use it in GitHub Desktop.
module.exports.StockService = function (rootUrl) {
this.rootUrl = rootUrl + "/Stock/";
};
module.exports.StockService.prototype.getStockInfo = function (articleId) {
let url = this.rootUrl + "Info";
return get(url, {
articleId: articleId
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment