@qbcart/cosmos
Version:
Azure Cosmos DB access common across the QBCart node ecosystem.
18 lines (17 loc) • 533 B
JavaScript
/***********************************************
* @license
* Copyright (c) QBCart Inc. All rights reserved.
************************************************/
import Base from '../base';
import EShopCart from './eshop/cart';
import EShopCustomPricing from './eshop/customPricing';
export default class Customers extends Base {
eshop;
constructor(container) {
super(container);
this.eshop = {
cart: new EShopCart(this),
customPricing: new EShopCustomPricing(this)
};
}
}