Update namespaces and usings for Insert procedures

Refactored InsertActionProcedure to the RecActions.Commands namespace and updated its usings to import InsertObjectProcedure. Added missing using for RecActions.Commands in InsertObjectProcedure.cs. These changes improve code organization and clarify command responsibilities.
This commit is contained in:
2026-01-22 10:17:08 +01:00
parent 878e096c57
commit 6feef53733
2 changed files with 4 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ using ReC.Application.EndpointAuth.Commands;
using ReC.Application.EndpointParams.Commands;
using ReC.Application.Endpoints.Commands;
using ReC.Application.Profile.Commands;
using ReC.Application.RecActions.Commands;
using ReC.Application.Results.Commands;
namespace ReC.Application.Common.Procedures.InsertProcedure;

View File

@@ -1,6 +1,7 @@
using ReC.Domain.Constants;
using ReC.Application.Common.Procedures.InsertProcedure;
using ReC.Domain.Constants;
namespace ReC.Application.Common.Procedures.InsertProcedure;
namespace ReC.Application.RecActions.Commands;
public record InsertActionProcedure : IInsertProcedure
{