using System.Collections.Generic;
using System.Threading.Tasks;
using GxPress.Common.WechatPay;
namespace GxPress.Service.Interface.Order
{
public interface IOrderService : IService
{
///
/// 创建微信订单
///
///
///
Task InsertWxOrderAsync(WxPayData data);
///
/// 支付宝
///
///
///
Task InsertAliPayOrderAsync(Dictionary sArray);
}
}