Move CreateResultViewCommand to OutResults.Commands

Relocated CreateResultViewCommand and its handler from ResultViews.Commands to OutResults.Commands. Updated all namespace references and using directives accordingly. Modified the project file to include the new folder structure. No functional changes to the command or handler logic.
This commit is contained in:
2026-01-12 11:30:46 +01:00
parent 5245cd04ff
commit 2635bfb223
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
using Microsoft.AspNetCore.Mvc;
using ReC.API.Extensions;
using ReC.API.Models;
using ReC.Application.ResultViews.Commands;
using ReC.Application.OutResults.Commands;
using ReC.Application.ResultViews.Queries;
namespace ReC.API.Controllers;

View File

@@ -4,7 +4,7 @@ using ReC.Application.Common.Interfaces;
using ReC.Domain.Views;
using System.Text.Json.Serialization;
namespace ReC.Application.ResultViews.Commands;
namespace ReC.Application.OutResults.Commands;
public class CreateResultViewCommand : IAuthScoped, IRequest
{

View File

@@ -1,4 +1,4 @@
using ReC.Application.ResultViews.Commands;
using ReC.Application.OutResults.Commands;
using ReC.Domain.Views;
namespace ReC.Application.ResultViews;