public Premium(double premiumPrYear, Maturity maturity) { this._depositDistribution = new DepositDistribution(false); this.PremiumPrYear = premiumPrYear; this._maturity = maturity; }
public Premium(double premiumPrYear, double maxOnRate, Maturity maturity) { this._depositDistribution = new DepositDistribution(maxOnRate); this.PremiumPrYear = premiumPrYear; this._maturity = maturity; }