namespace NetinaShop.Core.Abstracts; public interface IPaymentService : IScopedDependency { Task GetPaymentLinkAsync(double amount, string factorNumber, Guid orderId, Guid userId, string phoneNumber, string fullName, CancellationToken cancellationToken = default); Task VerifyPaymentAsync(string authority, CancellationToken cancellationToken = default); }