예제 #1
0
 public AccountingEntry(PolicyAccount policyAccount, DateTimeOffset creationDate, DateTimeOffset effectiveDate, decimal amount)
 {
     Id            = Guid.NewGuid();
     PolicyAccount = policyAccount;
     CreationDate  = creationDate;
     EffectiveDate = effectiveDate;
     Amount        = amount;
 }
예제 #2
0
 public ExpectedPayment(PolicyAccount policyAccount, DateTimeOffset creationDate, DateTimeOffset effectiveDate, decimal amount) :
     base(policyAccount, creationDate, effectiveDate, amount)
 {
 }