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:
2026-01-16 11:13:06 +01:00
parent 36fe78e152
commit 4895b9c8f8
8 changed files with 9 additions and 9 deletions

View File

@@ -5,8 +5,8 @@ using ReC.API.Models;
using ReC.Application.Common.Procedures.DeleteProcedure;
using ReC.Application.Common.Procedures.InsertProcedure;
using ReC.Application.Common.Procedures.UpdateProcedure;
using ReC.Application.OutResults.Commands;
using ReC.Application.OutResults.Queries;
using ReC.Application.Results.Commands;
using ReC.Application.Results.Queries;
namespace ReC.API.Controllers;