using MotoresArgentinosV2.Core.DTOs; namespace MotoresArgentinosV2.Core.Interfaces; public interface IPaymentService { Task ProcessPaymentAsync(CreatePaymentRequestDto request, int userId); Task ProcessWebhookAsync(string topic, string id); Task CheckPaymentStatusAsync(int adId); }