Files
register-referentie/services/acl/Acl.Application/IZaakGateway.cs
Edwin van den Houdt 4b2af5c635
Some checks failed
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
CI / unit (push) Has been cancelled
CI / compose-smoke (push) Has been cancelled
feat(acl): ACL skeleton — OpenZaak default-fill (refs #5) (#45)
2026-06-04 07:50:45 +00:00

9 lines
281 B
C#

namespace Acl.Application;
/// <summary>Port to the ZGW Zaken API. Implemented in Infrastructure — the only
/// code that talks to OpenZaak (ADR-0001).</summary>
public interface IZaakGateway
{
Task<Uri> OpenZaakAsync(ZaakRequest request, CancellationToken ct = default);
}