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); } }