1 2 3 4 5 6 7 8
namespace CSharpSimple.Payments { public interface IPaymentService { Task<bool> ProcessPayment(decimal amount, string userId); Task<bool> RefundPayment(string transactionId); } }