You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
451 B

1 year ago
  1. using Common;
  2. using Common.Model.Remit;
  3. namespace Business.Remit
  4. {
  5. public interface IRemitBusiness
  6. {
  7. JsonRxResponse SearchTxnByControlNumber(SearchTxnModel searchTxn);
  8. JsonRxResponse RedeemCashPayment(ConfirmTxnModel redeemTxn);
  9. JsonRxResponse WithdrawWalletRequest(WithdrawWalletRequestModel withdrawWalletRequest);
  10. JsonRxResponse WithdrawFromWallet(WithdrawFromWalletModel withdrawWalletRequest);
  11. }
  12. }