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.
 
 
 

18 lines
525 B

using Common;
using Common.Model.AutoRefund;
namespace Business.AutoRefund
{
public interface IAutoRefundBusiness
{
JsonRxResponse UpdateAutoRefund(KwangjuAutoRefundModel model);
CustomerInfo GetCustomerInfoForKwangju(string customerId);
JsonRxResponse GetRefundRequirement(string userName);
JsonRxResponse ProcessAutoRefund(AutoRefundRequestModel model);
JsonRxResponse AutoDebitGiveBackDeposit(AutoDebitRefund refundInfo, AmountTransferToBank transferToBank);
}
}