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.

17 lines
525 B

1 year ago
  1. using Common;
  2. using Common.Model.AutoRefund;
  3. namespace Business.AutoRefund
  4. {
  5. public interface IAutoRefundBusiness
  6. {
  7. JsonRxResponse UpdateAutoRefund(KwangjuAutoRefundModel model);
  8. CustomerInfo GetCustomerInfoForKwangju(string customerId);
  9. JsonRxResponse GetRefundRequirement(string userName);
  10. JsonRxResponse ProcessAutoRefund(AutoRefundRequestModel model);
  11. JsonRxResponse AutoDebitGiveBackDeposit(AutoDebitRefund refundInfo, AmountTransferToBank transferToBank);
  12. }
  13. }