using LifePayment.Domain.Shared; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace LifePayment.Domain { public interface IAlipayManager : IDomainService { Task AlipayTransUniTransferToCard(WalletSingleApplicationSuspensionPaymentInput input, bool isToCard); } }