using MyCode.Project.Domain.Businesses;
using MyCode.Project.Domain.Dtos.Common;
using MyCode.Project.Domain.Model;
using MyCode.Project.Domain.Procs;
using System;
using System.Collections.Generic;
namespace MyCode.Project.Services
{
///
/// 在线支付 相关服务
///
public interface IOnlinePayService
{
///
/// 单一在线付款方式的退款逻辑
///
///
///
///
///
/// 退款金额
/// 业务类型。100=充值;8010=销售;8011=预售
BusOrderRefundLog RefundMoney(BusOrderPay oriOrderPay, Guid sheetId, Guid shopId, string sheet, decimal payAmount, int SheetType);
}
}