コード例 #1
0
ファイル: TermDeposit.cs プロジェクト: anagri/sharekhan
 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();
 }
コード例 #2
0
ファイル: SinglePayOut.cs プロジェクト: anagri/sharekhan
 public SinglePayOut(Term term, Price investedAmount,
                     Symbol symbol, string description,
                     InterestRate interestRate)
     : base(term, investedAmount, symbol, description, interestRate, 0)
 {
 }