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:
@@ -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;
|
||||
|
||||
@@ -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
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
using ReC.Application.ResultViews.Commands;
|
||||
using ReC.Application.OutResults.Commands;
|
||||
using ReC.Domain.Views;
|
||||
|
||||
namespace ReC.Application.ResultViews;
|
||||
|
||||
Reference in New Issue
Block a user