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.
This commit is contained in:
2025-12-15 16:55:45 +01:00
parent 25c6c41b26
commit e4a644a636

View File

@@ -16,5 +16,8 @@ public class DtoMappingProfile : AutoMapper.Profile
CreateMap<EndpointParam, EndpointParamDto>(); CreateMap<EndpointParam, EndpointParamDto>();
CreateMap<Profile, ProfileDto>(); CreateMap<Profile, ProfileDto>();
CreateMap<RecAction, RecActionDto>(); CreateMap<RecAction, RecActionDto>();
CreateMap<RecResultView, RecResultViewDto>();
CreateMap<ProfileView, ProfileViewDto>();
} }
} }