Interface IEducationMapper
public interface IEducationMapper
Mapper class for mapping Education entities to EducationDTOs.
-
Method Summary
Modifier and TypeMethodDescriptiontoEducationDTO
(callofproject.dev.repository.authentication.entity.Education education) Maps an Education entity to an EducationDTO.default EducationsDTO
toEducationsDTO
(List<EducationDTO> educations) Maps a list of Education entities to an EducationsDTO.
-
Method Details
-
toEducationDTO
Maps an Education entity to an EducationDTO.- Parameters:
education
- The Education entity to be mapped.- Returns:
- An EducationDTO representing the mapped Education entity.
-
toEducationsDTO
Maps a list of Education entities to an EducationsDTO.- Parameters:
educations
- The list of Education entities to be mapped.- Returns:
- An EducationsDTO representing the mapped list of Education entities.
-