Refactor endpoint Procedures to Commands for CQRS alignment

Renamed Insert/Update/DeleteEndpointProcedure classes to their
respective Command counterparts to follow CQRS conventions.
Updated controller actions, handlers, InsertObjectProcedure,
and related unit tests to use the new Command types.
No functional changes were made; this is a naming refactor.
This commit is contained in:
2026-03-24 11:38:22 +01:00
parent 5df36d94e0
commit 4999beda3b
6 changed files with 16 additions and 16 deletions

View File

@@ -25,7 +25,7 @@ public record InsertObjectProcedure : IRequest<long>
internal string? AddedWho { get; private set; } = "ReC.API";
public InsertActionProcedure Action { get; set; } = new();
public InsertEndpointProcedure Endpoint { get; set; } = new();
public InsertEndpointCommand Endpoint { get; set; } = new();
public InsertEndpointAuthCommand EndpointAuth { get; set; } = new();
public InsertProfileProcedure Profile { get; set; } = new();
public InsertResultProcedure Result { get; set; } = new();