matthewglassman
3/27/2017 - 1:59 PM

ORM for manipulating data between index-handlebars and database

ORM for manipulating data between index-handlebars and database

var orm = require("../config/orm.js");

var burger = {
	all: function(cb){
		orm.all("burgers", function(res){
			cb(res);
		});
	},
	create: function(col, val, cb){
		orm.create("burgers", col, val, function(res){
			cb(res);
		});
	},
	update: function(objColVals, condition, cb){
		orm.update("burgers", objColVals, condition, function(res){
			cb(res);
		});
	}
};
module.exports = burger;