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