Update namespaces to Common.Dto for DTO-related files

Refactored PlaceholderExtensions, DtoMappingProfile, and InvokeActionTests
to use the ReC.Application.Common.Dto namespace instead of
ReC.Application.Common.Behaviors.Action. Updated using directives and
namespaces to improve code organization for DTO-related logic.
This commit is contained in:
2026-03-26 16:52:54 +01:00
parent bd78ada686
commit b3dfdd1e5c
3 changed files with 2 additions and 3 deletions

View File

@@ -1,4 +1,3 @@
using ReC.Application.Common.Behaviors.Action;
using ReC.Domain.Views; using ReC.Domain.Views;
namespace ReC.Application.Common.Dto; namespace ReC.Application.Common.Dto;

View File

@@ -3,7 +3,7 @@ using System.Reflection;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using ReC.Application.Common.Exceptions; using ReC.Application.Common.Exceptions;
namespace ReC.Application.Common.Behaviors.Action; namespace ReC.Application.Common.Dto;
public static partial class PlaceholderExtensions public static partial class PlaceholderExtensions
{ {

View File

@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
using ReC.Application.Common.Behaviors.Action; using ReC.Application.Common.Dto;
using ReC.Application.Common.Exceptions; using ReC.Application.Common.Exceptions;
namespace ReC.Tests.Application.Behaviors; namespace ReC.Tests.Application.Behaviors;