Repository.prototype.saveAll = function () {
    let self = this;
    return Promise.all(Object.keys(this._copy).map((key) => self.save(key)));
};