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:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
@@ -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
|
||||||
{
|
{
|
||||||
@@ -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
|
||||||
{
|
{
|
||||||
Reference in New Issue
Block a user