兼容win7版应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
575 B

using System.Threading.Tasks;
using System.Threading;
using AIK.Models.ApiModels.Payment;
namespace AIK.Service.IService
{
public interface IPaymentOrderService
{
Task<PaymentParametersPC?> CreateIntegralOrderAsync(string token, CreateIntegralOrderRequest request, CancellationToken cancellationToken = default);
Task<int?> GetOrderPayStatusAsync(long orderId, int type = 2, CancellationToken cancellationToken = default);
Task<int?> RefreshPaypalOrderAsync(long orderId, int type = 2, CancellationToken cancellationToken = default);
}
}