com.brihaspathee.zeus.mapper.interfaces.FileDetailMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-mgmt-service Show documentation
Show all versions of file-mgmt-service Show documentation
Service that intakes all the files that are received
The newest version!
package com.brihaspathee.zeus.mapper.interfaces;
import com.brihaspathee.zeus.domain.entity.FileDetail;
import com.brihaspathee.zeus.dto.transaction.FileDetailDto;
import java.util.Set;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 30, March 2022
* Time: 3:47 PM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.mapper.interfaces
* To change this template use File | Settings | File and Code Template
*/
public interface FileDetailMapper {
FileDetail fileDetailDtoToFileDetail(FileDetailDto detailDto);
FileDetailDto fileDetailToFileDetailDto(FileDetail detail);
Set fileDetailDtosToFileDetails(Set detailDtos);
Set fileDetailsToFileDetailDtos(Set details);
}