Move EndpointAuth procedures to dedicated namespace

Refactored Delete/Insert/UpdateEndpointAuthProcedure records into the new ReC.Application.EndpointAuth.Commands namespace for better organization. Updated using statements in related files to ensure compatibility. No functional changes to the procedure records themselves.
This commit is contained in:
2026-01-16 09:38:59 +01:00
parent f6b95331e1
commit 6f4ab073df
5 changed files with 11 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
using MediatR; using MediatR;
using Microsoft.Data.SqlClient; using Microsoft.Data.SqlClient;
using ReC.Application.Common.Exceptions; using ReC.Application.Common.Exceptions;
using ReC.Application.EndpointAuth.Commands;
using ReC.Application.OutResults.Commands; using ReC.Application.OutResults.Commands;
using ReC.Application.Profile.Commands; using ReC.Application.Profile.Commands;

View File

@@ -2,6 +2,7 @@ using DigitalData.Core.Abstraction.Application.Repository;
using MediatR; using MediatR;
using Microsoft.Data.SqlClient; using Microsoft.Data.SqlClient;
using ReC.Application.Common.Exceptions; using ReC.Application.Common.Exceptions;
using ReC.Application.EndpointAuth.Commands;
using ReC.Application.OutResults.Commands; using ReC.Application.OutResults.Commands;
using ReC.Application.Profile.Commands; using ReC.Application.Profile.Commands;
using ReC.Application.RecActions.Commands; using ReC.Application.RecActions.Commands;

View File

@@ -1,4 +1,6 @@
namespace ReC.Application.Common.Procedures.DeleteProcedure; using ReC.Application.Common.Procedures.DeleteProcedure;
namespace ReC.Application.EndpointAuth.Commands;
public record DeleteEndpointAuthProcedure : IDeleteProcedure public record DeleteEndpointAuthProcedure : IDeleteProcedure
{ {

View File

@@ -1,4 +1,6 @@
namespace ReC.Application.Common.Procedures.InsertProcedure; using ReC.Application.Common.Procedures.InsertProcedure;
namespace ReC.Application.EndpointAuth.Commands;
public record InsertEndpointAuthProcedure : IInsertProcedure public record InsertEndpointAuthProcedure : IInsertProcedure
{ {

View File

@@ -1,4 +1,6 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure; using ReC.Application.Common.Procedures.UpdateProcedure;
namespace ReC.Application.EndpointAuth.Commands;
public record UpdateEndpointAuthProcedure : IUpdateProcedure public record UpdateEndpointAuthProcedure : IUpdateProcedure
{ {