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
19 lines • 637 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Administrator = void 0;
const User_1 = require("./User");
class Administrator extends User_1.User {
constructor(psalt, pidentitycard, pcompletename, ppasword, pusername, pposition) {
super(psalt, pidentitycard, pcompletename, ppasword, pusername);
this._position = "";
this.position = pposition;
}
get position() {
return this._position;
}
set position(value) {
this._position = value;
}
}
exports.Administrator = Administrator;
//# sourceMappingURL=Administrator.js.map