Api/NetinaShop.Repository/Abstracts/IPaymentService.cs

7 lines
260 B
C#

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