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:
@@ -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>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user