import { Voucher } from "./Voucher"; export class Service { private _discountedAmount: number = 0; private _discountedPrice: number = 0; public _serviceName: string = ''; private _voucher: Voucher; constructor(voucherData: any, serviceSlug: string, voucher:Voucher) { this._discountedAmount = voucherData.discountedAmount; this._discountedPrice = voucherData.discountedPrice; this._serviceName = serviceSlug; this._voucher = voucher; } getServiceData() { return { discountedAmount: this._discountedAmount, discountedPrice: this._discountedPrice }; } getServiceName() { return this._serviceName; } }