Disambiguate Profile mapping in AutoMapper configuration
Updated the mapping configuration in `DtoMappingProfile` to use the fully qualified name `Domain.Entities.Profile` for the `Profile` entity. This change resolves potential ambiguity with other classes named `Profile` in the codebase.
This commit is contained in:
@@ -15,7 +15,7 @@ public class DtoMappingProfile : AutoMapper.Profile
|
|||||||
CreateMap<EndpointAuth, EndpointAuthDto>();
|
CreateMap<EndpointAuth, EndpointAuthDto>();
|
||||||
CreateMap<Endpoint, EndpointDto>();
|
CreateMap<Endpoint, EndpointDto>();
|
||||||
CreateMap<EndpointParam, EndpointParamDto>();
|
CreateMap<EndpointParam, EndpointParamDto>();
|
||||||
CreateMap<Profile, ProfileDto>();
|
CreateMap<Domain.Entities.Profile, ProfileDto>();
|
||||||
CreateMap<RecAction, RecActionDto>();
|
CreateMap<RecAction, RecActionDto>();
|
||||||
|
|
||||||
CreateMap<ResultView, ResultViewDto>();
|
CreateMap<ResultView, ResultViewDto>();
|
||||||
|
|||||||
Reference in New Issue
Block a user