Refactor: Rename DeleteEndpointAuthProcedure to Command

Renamed DeleteEndpointAuthProcedure to DeleteEndpointAuthCommand across the codebase, including controller, handler, and tests, to improve naming consistency and align with CQRS conventions for write operations.
This commit is contained in:
2026-03-24 11:31:33 +01:00
parent 302fee4908
commit 0162d059da
3 changed files with 5 additions and 5 deletions

View File

@@ -47,7 +47,7 @@ public class EndpointAuthProcedureTests : RecApplicationTestBase
[Test]
public async Task DeleteEndpointAuthProcedure_runs_via_mediator()
{
var procedure = new DeleteEndpointAuthProcedure { Start = 3, End = 4, Force = false };
var procedure = new DeleteEndpointAuthCommand { Start = 3, End = 4, Force = false };
var (sender, scope) = CreateScopedSender();
using var _ = scope;