📄 IRefundService.cs
1 2 3 4 5 6 7 8 9
using Walley.Checkout.Api.Models;

namespace Walley.Checkout.Api.Services;

public interface IRefundService
{
    Task<Refund> ProcessRefundAsync(string orderId, decimal amount, string reason);
}