Interface IUserProfileMapper
public interface IUserProfileMapper
Mapper class for mapping UserProfile entities to UserProfileDTOs.
-
Method Summary
Modifier and TypeMethodDescriptiontoUserProfileDTO
(callofproject.dev.repository.authentication.entity.UserProfile userProfile, EducationsDTO educationsDTO, ExperiencesDTO experiencesDTO, CoursesDTO coursesDTO, LinksDTO linksDTO, UserRateDTO userRateDTO) Maps a UserProfile entity to a UserProfileDTO.
-
Method Details
-
toUserProfileDTO
UserProfileDTO toUserProfileDTO(callofproject.dev.repository.authentication.entity.UserProfile userProfile, EducationsDTO educationsDTO, ExperiencesDTO experiencesDTO, CoursesDTO coursesDTO, LinksDTO linksDTO, UserRateDTO userRateDTO) Maps a UserProfile entity to a UserProfileDTO.- Parameters:
userProfile
- The UserProfile entity to be mapped.- Returns:
- A UserProfileDTO representing the mapped UserProfile entity.
-