Exemple #1
0
 public TermDeposit(Term term, Price investedAmount,
                     Symbol symbol, string description,
                     InterestRate interestRate, int interestPayoutFrequency)
     : base(symbol, investedAmount, description)
 {
     Term = term;
     InterestRate = interestRate;
     InvestedAmount = investedAmount;
     InterestPayoutFrequency = interestPayoutFrequency;
     Validate();
 }
Exemple #2
0
 public SinglePayOut(Term term, Price investedAmount,
                     Symbol symbol, string description,
                     InterestRate interestRate)
     : base(term, investedAmount, symbol, description, interestRate, 0)
 {
 }