com.brihaspathee.zeus.mapper.interfaces.TradingPartnerMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tp-service Show documentation
Show all versions of tp-service Show documentation
Service that contains all Trading Partner Information
The newest version!
package com.brihaspathee.zeus.mapper.interfaces;
import com.brihaspathee.zeus.domain.entity.TradingPartner;
import com.brihaspathee.zeus.web.model.TradingPartnerDto;
import java.util.List;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 19, January 2022
* Time: 4:23 PM
* Project: Zeus
* Package Name: com.zeus.mapper.interfaces
* To change this template use File | Settings | File and Code Template
*/
public interface TradingPartnerMapper {
TradingPartnerDto tradingPartnerToTradingPartnerDto(TradingPartner tradingPartner);
TradingPartner tradingPartnerDtoToTradingPartner(TradingPartnerDto tradingPartnerDto);
List tradingPartnerDtoListToTradingPartnerList(List tradingPartnerDtos);
List tradingPartnerListToTradingPartnerDtoList(List tradingPartners);
}