using Common; using Common.Model.Remit; namespace Business.Remit { public interface IRemitBusiness { JsonRxResponse SearchTxnByControlNumber(SearchTxnModel searchTxn); JsonRxResponse RedeemCashPayment(ConfirmTxnModel redeemTxn); JsonRxResponse WithdrawWalletRequest(WithdrawWalletRequestModel withdrawWalletRequest); JsonRxResponse WithdrawFromWallet(WithdrawFromWalletModel withdrawWalletRequest); } }