2024-02-12 10:46:18 +03:30
|
|
|
|
namespace NetinaShop.Core.Abstracts;
|
|
|
|
|
|
|
|
|
|
|
|
public interface IPaymentService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<string> GetPaymentLinkAsync(double amount, string factorNumber, Guid orderId, Guid userId, string phoneNumber, string fullName, CancellationToken cancellationToken = default);
|
2024-02-13 17:41:06 +03:30
|
|
|
|
Task<Tuple<string, string>> VerifyPaymentAsync(string authority, CancellationToken cancellationToken = default);
|
2024-02-12 10:46:18 +03:30
|
|
|
|
}
|