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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user