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