@qbcart/cosmos
Version:
Azure Cosmos DB access common across the QBCart node ecosystem.
20 lines (19 loc) • 644 B
JavaScript
;
/***********************************************
* @license
* Copyright (c) QBCart Inc. All rights reserved.
************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
const base_1 = require("../base");
const cart_1 = require("./eshop/cart");
const customPricing_1 = require("./eshop/customPricing");
class Customers extends base_1.default {
constructor(container) {
super(container);
this.eshop = {
cart: new cart_1.default(this),
customPricing: new customPricing_1.default(this)
};
}
}
exports.default = Customers;