com.brihaspathee.zeus.helper.interfaces.PayerHelper Maven / Gradle / Ivy
The newest version!
package com.brihaspathee.zeus.helper.interfaces;
import com.brihaspathee.zeus.domain.entity.Account;
import com.brihaspathee.zeus.dto.account.PayerDto;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 29, November 2022
* Time: 4:00 PM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.helper.interfaces
* To change this template use File | Settings | File and Code Template
*/
public interface PayerHelper {
/**
* Create payer
* @param payerDto
* @return
*/
PayerDto createPayer(PayerDto payerDto, Account account);
}