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.
28 lines
814 B
28 lines
814 B
using BBWYB.Common.Http;
|
|
using SDKAdapter.PurchasePlatform.Models;
|
|
|
|
namespace SDKAdapter.PurchasePlatform.Client
|
|
{
|
|
public class PP_PlatformClient
|
|
{
|
|
protected RestApiService restApiService { get; private set; }
|
|
|
|
public virtual AdapterEnums.PlatformType Platform { get; }
|
|
|
|
public PP_PlatformClient(RestApiService restApiService)
|
|
{
|
|
this.restApiService = restApiService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 预览订单
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
public virtual PP_PreviewOrderResponse PreviewOrder(PP_PreviewOrderRequest request)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|