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