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