Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. const orm = require("../config/orm.js");
  2.  
  3. var burger = {
  4. selectAll: function (cb) {
  5. orm.selectAll("burgers", function (res) {
  6. cb(res);
  7. });
  8. },
  9. insertOne: function (columnInput, valueInput, cb) {
  10. orm.insertOne("burgers", columnInput, valueInput, function (res) {
  11. cb(res);
  12. });
  13. },
  14. updateOne: function (columnInput, valueInput, conditionCol, conditionVal, cb) {
  15. orm.insertOne("burgers", columnInput, valueInput, conditionCol, conditionVal, function (res) {
  16. cb(res);
  17. });
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement