From e4a644a636f13d4d82c5dcda186e9fc24e0becd6 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 15 Dec 2025 16:55:45 +0100 Subject: [PATCH] Add mappings for RecResultView and ProfileView DTOs Added AutoMapper profile mappings for RecResultView to RecResultViewDto and ProfileView to ProfileViewDto to enable automatic entity-to-DTO conversions. --- src/ReC.Application/Common/Dto/DtoMappingProfile.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ReC.Application/Common/Dto/DtoMappingProfile.cs b/src/ReC.Application/Common/Dto/DtoMappingProfile.cs index ed9ffd3..ff4cc52 100644 --- a/src/ReC.Application/Common/Dto/DtoMappingProfile.cs +++ b/src/ReC.Application/Common/Dto/DtoMappingProfile.cs @@ -16,5 +16,8 @@ public class DtoMappingProfile : AutoMapper.Profile CreateMap(); CreateMap(); CreateMap(); + + CreateMap(); + CreateMap(); } }