Rename Profile*Procedure types to Profile*Command for clarity

Renamed InsertProfileProcedure, UpdateProfileProcedure, and DeleteProfileProcedure (and their handlers) to use the "Command" suffix for consistency. Updated all usages in controllers, handlers, and tests. No logic changes; only type names were updated for improved clarity.
This commit is contained in:
2026-03-24 11:39:04 +01:00
parent 4999beda3b
commit de503cac5b
7 changed files with 19 additions and 19 deletions

View File

@@ -27,7 +27,7 @@ public record InsertObjectProcedure : IRequest<long>
public InsertActionProcedure Action { get; set; } = new();
public InsertEndpointCommand Endpoint { get; set; } = new();
public InsertEndpointAuthCommand EndpointAuth { get; set; } = new();
public InsertProfileProcedure Profile { get; set; } = new();
public InsertProfileCommand Profile { get; set; } = new();
public InsertResultProcedure Result { get; set; } = new();
public InsertEndpointParamsCommand EndpointParams { get; set; } = new();
}