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.
 
 
 

26 lines
784 B

using Common;
using Common.Model;
using Common.Model.AutoRefund;
using System.Data;
namespace Repository.AutoRefund
{
public interface IAutoRefundRepository
{
JsonRxResponse SendAutoRefund(KwangjuAutoRefundModel model);
CustomerInfo GetCustomerInfoForKwangju(string customerId);
RefundRequireResponseModel GetRefundRequirement(string username);
void LogFailTransactionForAutoDebit(string rowId, string errorCode, string errorMsg);
DataTable GetAccountList(string customerId);
/* 2019.09 @Dana */
DbResult LogRequestKFTC(string user, string methodName, string requestXml, string processId = "");
DbResult LogResponseKFTC(string rowId, string responseXml, string tpErrorCode, string tpErrorMsg);
}
}