All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cleverpine.cpspringdatacrud.mapper.PresentationLayerMapper Maven / Gradle / Ivy

The newest version!
package com.cleverpine.cpspringdatacrud.mapper;

import org.mapstruct.Mapping;

import java.util.List;

public interface PresentationLayerMapper {

    @Mapping(target = "id", ignore = true)
    BusinessLayerDTO presentationLayerDTOToBusinessLayerDTO(PresentationLayerDTO presentationLayerDTO);

    PresentationLayerDTO businessLayerDTOToPresentationLayerDTO(BusinessLayerDTO businessLayerDTO);

    List businessLayerDTOListToPresentationLayerDTOList(List businessLayerDTOList);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy