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.
 
 
 

31 lines
1.1 KiB

using Common;
using Common.Model;
using Common.Model.SendMoney;
namespace Business.SendMoney
{
public interface ISendMoneyBusiness
{
JsonRxResponse LoadCountryServiceDetail(CountryServiceModel request);
JsonRxResponse LoadBankBranch(string country, string bank, string search);
//JsonRxResponse AccountValidation(AccountValidationRequest request);
JsonRxResponse Calculate(ExRateCalculateRequest model);
JsonRxResponse SendTransaction(MobileRemitRequest model);
JsonRxResponse TrackTransaction(TrackTransactionParam param);
JsonRxResponse AmendTransaction(TrackTransactionParam param);
JsonRxResponse AmendTransactionV2(AmendTransactionParam param);
JsonRxResponse CancelTransaction(TrackTransactionParam param);
DbResult CheckLoginPassword(string user, string txnPassword, string paymentType, string customerId);
DbResult CheckLoginPIN(string user, string txnPassword, string paymentType, string customerId);
JsonRxResponse RejectTransaction(RejectTransactionParam param);
JsonRxResponse AccountValidation(AccountValidationModel model);
}
}