Refactor: move OutResults to Results namespace
Refactored all "Result" related command and query classes from ReC.Application.OutResults to ReC.Application.Results. Updated all relevant using statements and reorganized files accordingly. No functional changes; this improves project structure and clarity.
This commit is contained in:
@@ -5,8 +5,8 @@ using ReC.API.Models;
|
|||||||
using ReC.Application.Common.Procedures.DeleteProcedure;
|
using ReC.Application.Common.Procedures.DeleteProcedure;
|
||||||
using ReC.Application.Common.Procedures.InsertProcedure;
|
using ReC.Application.Common.Procedures.InsertProcedure;
|
||||||
using ReC.Application.Common.Procedures.UpdateProcedure;
|
using ReC.Application.Common.Procedures.UpdateProcedure;
|
||||||
using ReC.Application.OutResults.Commands;
|
using ReC.Application.Results.Commands;
|
||||||
using ReC.Application.OutResults.Queries;
|
using ReC.Application.Results.Queries;
|
||||||
|
|
||||||
namespace ReC.API.Controllers;
|
namespace ReC.API.Controllers;
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ using ReC.Application.Common.Exceptions;
|
|||||||
using ReC.Application.EndpointAuth.Commands;
|
using ReC.Application.EndpointAuth.Commands;
|
||||||
using ReC.Application.EndpointParams.Commands;
|
using ReC.Application.EndpointParams.Commands;
|
||||||
using ReC.Application.Endpoints.Commands;
|
using ReC.Application.Endpoints.Commands;
|
||||||
using ReC.Application.OutResults.Commands;
|
using ReC.Application.Results.Commands;
|
||||||
using ReC.Application.Profile.Commands;
|
using ReC.Application.Profile.Commands;
|
||||||
|
|
||||||
namespace ReC.Application.Common.Procedures.InsertProcedure;
|
namespace ReC.Application.Common.Procedures.InsertProcedure;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ using ReC.Application.Common.Exceptions;
|
|||||||
using ReC.Application.EndpointAuth.Commands;
|
using ReC.Application.EndpointAuth.Commands;
|
||||||
using ReC.Application.EndpointParams.Commands;
|
using ReC.Application.EndpointParams.Commands;
|
||||||
using ReC.Application.Endpoints.Commands;
|
using ReC.Application.Endpoints.Commands;
|
||||||
using ReC.Application.OutResults.Commands;
|
using ReC.Application.Results.Commands;
|
||||||
using ReC.Application.Profile.Commands;
|
using ReC.Application.Profile.Commands;
|
||||||
using ReC.Application.RecActions.Commands;
|
using ReC.Application.RecActions.Commands;
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ using ReC.Application.Common.Constants;
|
|||||||
using ReC.Application.Common.Dto;
|
using ReC.Application.Common.Dto;
|
||||||
using ReC.Application.Common.Exceptions;
|
using ReC.Application.Common.Exceptions;
|
||||||
using ReC.Application.Common.Procedures.InsertProcedure;
|
using ReC.Application.Common.Procedures.InsertProcedure;
|
||||||
using ReC.Application.OutResults.Commands;
|
using ReC.Application.Results.Commands;
|
||||||
using ReC.Domain.Constants;
|
using ReC.Domain.Constants;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using ReC.Application.Common.Procedures.DeleteProcedure;
|
using ReC.Application.Common.Procedures.DeleteProcedure;
|
||||||
|
|
||||||
namespace ReC.Application.OutResults.Commands;
|
namespace ReC.Application.Results.Commands;
|
||||||
|
|
||||||
public record DeleteResultProcedure : IDeleteProcedure
|
public record DeleteResultProcedure : IDeleteProcedure
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using ReC.Application.Common.Procedures.InsertProcedure;
|
using ReC.Application.Common.Procedures.InsertProcedure;
|
||||||
|
|
||||||
namespace ReC.Application.OutResults.Commands;
|
namespace ReC.Application.Results.Commands;
|
||||||
|
|
||||||
public record InsertResultProcedure : IInsertProcedure
|
public record InsertResultProcedure : IInsertProcedure
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using ReC.Application.Common.Procedures.UpdateProcedure;
|
using ReC.Application.Common.Procedures.UpdateProcedure;
|
||||||
|
|
||||||
namespace ReC.Application.OutResults.Commands;
|
namespace ReC.Application.Results.Commands;
|
||||||
|
|
||||||
public record UpdateResultProcedure : IUpdateProcedure
|
public record UpdateResultProcedure : IUpdateProcedure
|
||||||
{
|
{
|
||||||
@@ -7,7 +7,7 @@ using ReC.Application.Common.Dto;
|
|||||||
using ReC.Domain.Views;
|
using ReC.Domain.Views;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace ReC.Application.OutResults.Queries;
|
namespace ReC.Application.Results.Queries;
|
||||||
|
|
||||||
public record ReadResultViewQuery : IRequest<IEnumerable<ResultViewDto>>
|
public record ReadResultViewQuery : IRequest<IEnumerable<ResultViewDto>>
|
||||||
{
|
{
|
||||||
Reference in New Issue
Block a user