Move RecActionView commands to RecActions namespace

Refactored InvokeBatchRecActionViewsCommand and InvokeRecActionViewCommand to ReC.Application.RecActions.Commands. Updated related handlers, records, and extension methods to use the new namespace. Removed obsolete using statement in RecActionController. No functional changes; organizational update only.
This commit is contained in:
2026-01-12 11:21:26 +01:00
parent e5bb61376a
commit 9d5334e7dc
3 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,6 @@ using Microsoft.AspNetCore.Mvc;
using ReC.API.Extensions;
using ReC.API.Models;
using ReC.Application.RecActions.Commands;
using ReC.Application.RecActionViews.Commands;
using ReC.Application.RecActionViews.Queries;
using System.Text.Json;

View File

@@ -2,7 +2,7 @@
using ReC.Application.RecActionViews.Queries;
using ReC.Domain.Constants;
namespace ReC.Application.RecActionViews.Commands;
namespace ReC.Application.RecActions.Commands;
public record InvokeBatchRecActionViewsCommand : IRequest
{

View File

@@ -11,7 +11,7 @@ using System.Net.Http.Headers;
using System.Text;
using System.Text.Json;
namespace ReC.Application.RecActionViews.Commands;
namespace ReC.Application.RecActions.Commands;
public record InvokeRecActionViewCommand : IRequest<bool>
{