Interface IEducationMapper


public interface IEducationMapper
Mapper class for mapping Education entities to EducationDTOs.
  • Method Summary

    Modifier and Type
    Method
    Description
    toEducationDTO(callofproject.dev.repository.authentication.entity.Education education)
    Maps an Education entity to an EducationDTO.
    Maps a list of Education entities to an EducationsDTO.
  • Method Details

    • toEducationDTO

      EducationDTO toEducationDTO(callofproject.dev.repository.authentication.entity.Education education)
      Maps an Education entity to an EducationDTO.
      Parameters:
      education - The Education entity to be mapped.
      Returns:
      An EducationDTO representing the mapped Education entity.
    • toEducationsDTO

      default EducationsDTO toEducationsDTO(List<EducationDTO> educations)
      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.