feat(domain): FindDueForHerregistratieReminderAsync filters on the reminder-due rule (refs #18)

refs #18
This commit is contained in:
not
2026-07-23 11:53:16 +02:00
parent 3b3a44b177
commit 27fdde5551
@@ -29,5 +29,6 @@ public sealed class InMemoryRegistrationStore : IRegistrationStore
public Task<IReadOnlyList<Registration>> FindDueForHerregistratieReminderAsync(
DateTimeOffset asOf, CancellationToken ct = default)
=> Task.FromResult<IReadOnlyList<Registration>>([]); // RED stub
=> Task.FromResult<IReadOnlyList<Registration>>(
_byId.Values.Where(r => r.HerregistratieReminderDue(asOf)).ToList());
}