e-commercee
Version:
This package contains a backend of what would be the logic of a e-commercee software, the architecture used is made in 3 layers
23 lines • 742 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FactoryLogic = void 0;
const LArticle_1 = require("./class/LArticle");
const LCategory_1 = require("./class/LCategory");
const LOrder_1 = require("./class/LOrder");
const LUser_1 = require("./class/LUser");
class FactoryLogic {
static getLCategory() {
return (LCategory_1.LCategory.getInstance());
}
static getLArticle() {
return (LArticle_1.LArticle.getInstance());
}
static getLUser() {
return (LUser_1.LUser.getInstance());
}
static getLOrder() {
return (LOrder_1.LOrder.getInstance());
}
}
exports.FactoryLogic = FactoryLogic;
//# sourceMappingURL=FactoryLogic.js.map