|
| 1 | +"use strict"; |
| 2 | +var __extends = (this && this.__extends) || (function () { |
| 3 | + var extendStatics = function (d, b) { |
| 4 | + extendStatics = Object.setPrototypeOf || |
| 5 | + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || |
| 6 | + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; |
| 7 | + return extendStatics(d, b); |
| 8 | + }; |
| 9 | + return function (d, b) { |
| 10 | + if (typeof b !== "function" && b !== null) |
| 11 | + throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); |
| 12 | + extendStatics(d, b); |
| 13 | + function __() { this.constructor = d; } |
| 14 | + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); |
| 15 | + }; |
| 16 | +})(); |
| 17 | +Object.defineProperty(exports, "__esModule", { value: true }); |
| 18 | +exports.PercentageDiscount = void 0; |
| 19 | +var DiscountDecorator_1 = require("./DiscountDecorator"); |
| 20 | +var PercentageDiscount = /** @class */ (function (_super) { |
| 21 | + __extends(PercentageDiscount, _super); |
| 22 | + function PercentageDiscount(product, discountPercentage) { |
| 23 | + var _this = _super.call(this, product) || this; |
| 24 | + _this.discountPercentage = discountPercentage; |
| 25 | + return _this; |
| 26 | + } |
| 27 | + PercentageDiscount.prototype.getPrice = function () { |
| 28 | + return this.product.getPrice() * (1 - this.discountPercentage / 100); |
| 29 | + }; |
| 30 | + return PercentageDiscount; |
| 31 | +}(DiscountDecorator_1.DiscountDecorator)); |
| 32 | +exports.PercentageDiscount = PercentageDiscount; |
0 commit comments