From 152189fefd179865d3b0cc7598e7a85871cd8a7f Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 15 Dec 2025 16:57:05 +0100 Subject: [PATCH] Refactor: Rename RecResultViewDto to ResultViewDto Replaced all usage of RecResultViewDto with ResultViewDto for improved naming consistency. Updated AutoMapper profile to map ResultView to ResultViewDto. Removed RecResultViewDto.cs and added ResultViewDto.cs with the same properties. No functional changes. --- src/ReC.Application/Common/Dto/DtoMappingProfile.cs | 2 +- .../Common/Dto/{RecResultViewDto.cs => ResultViewDto.cs} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/ReC.Application/Common/Dto/{RecResultViewDto.cs => ResultViewDto.cs} (95%) diff --git a/src/ReC.Application/Common/Dto/DtoMappingProfile.cs b/src/ReC.Application/Common/Dto/DtoMappingProfile.cs index d132ee6..7808017 100644 --- a/src/ReC.Application/Common/Dto/DtoMappingProfile.cs +++ b/src/ReC.Application/Common/Dto/DtoMappingProfile.cs @@ -17,7 +17,7 @@ public class DtoMappingProfile : AutoMapper.Profile CreateMap(); CreateMap(); - CreateMap(); + CreateMap(); CreateMap(); } } diff --git a/src/ReC.Application/Common/Dto/RecResultViewDto.cs b/src/ReC.Application/Common/Dto/ResultViewDto.cs similarity index 95% rename from src/ReC.Application/Common/Dto/RecResultViewDto.cs rename to src/ReC.Application/Common/Dto/ResultViewDto.cs index 6783bf6..33d720c 100644 --- a/src/ReC.Application/Common/Dto/RecResultViewDto.cs +++ b/src/ReC.Application/Common/Dto/ResultViewDto.cs @@ -1,6 +1,6 @@ namespace ReC.Application.Common.Dto; -public record RecResultViewDto +public record ResultViewDto { public long Id { get; set; }