com.brihaspathee.zeus.helper.interfaces.BrokerHelper Maven / Gradle / Ivy
package com.brihaspathee.zeus.helper.interfaces;
import com.brihaspathee.zeus.domain.entity.Account;
import com.brihaspathee.zeus.dto.account.AccountDto;
import com.brihaspathee.zeus.dto.transaction.TransactionDto;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 27, November 2022
* Time: 4:39 PM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.helper.interfaces
* To change this template use File | Settings | File and Code Template
*/
public interface BrokerHelper {
/**
* Create a broker
* @param transactionDto
*/
void createBroker(TransactionDto transactionDto, Account account);
/**
* Set the broker in the account dto to send to MMS
* @param accountDto
* @param account
*/
void setBroker(AccountDto accountDto, Account account);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy