Rename InsertEndpointAuthProcedure to InsertEndpointAuthCommand

Refactored all usages of InsertEndpointAuthProcedure to InsertEndpointAuthCommand, including method signatures, handler interfaces, and test cases, to better align with CQRS naming conventions for write operations.
This commit is contained in:
2026-03-24 11:35:58 +01:00
parent 0162d059da
commit a6b0cbaf9d
4 changed files with 6 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ public class EndpointAuthProcedureTests : RecApplicationTestBase
[Test]
public async Task InsertEndpointAuthProcedure_runs_via_mediator()
{
var procedure = new InsertEndpointAuthProcedure { Active = true, Description = "auth", TypeId = 1, ApiKey = "key", ApiValue = "value" };
var procedure = new InsertEndpointAuthCommand { Active = true, Description = "auth", TypeId = 1, ApiKey = "key", ApiValue = "value" };
var (sender, scope) = CreateScopedSender();
using var _ = scope;