namespace NetinaShop.Repository.Abstracts; public interface IPaymentService : IScopedDependency { Task GetPaymentLinkAsync(Guid orderId, double amount, string description); Task VerifiedPaymentAsync(string fishNumber, Guid orderId); }