using System.Threading.Tasks;
using ARW.Model.Dto.Api.Carts;
using ARW.Model.Dto.Api.Pay;
using ARW.Model.Models.Business.Payments;
using Senparc.Weixin.TenPayV3.Apis.BasePay;
using static Infrastructure.WeChat.TenPay.Pay;
namespace ARW.Service.Api.IBusinessService.PayManage
{
///
/// 微信支付类Api
///
/// @author lwh
/// @date 2023-09-27
///
public interface IPayServiceApi : IBaseService
{
///
/// 统一下单的业务处理
///
///
///
Task HandelPrePay(CommitPayDtoApi parm);
///
/// 支付回调的业务处理
///
///
///
Task HandleNotify(OrderReturnJson res);
}
}