Database.prototype.findAll = function(cb) {
  process.nextTick(function() {
    return cb(null, records);
  });
}