using LifePayment.Domain.Shared; using System; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace LifePayment.Domain { public interface ICommonManager : IDomainService { string GetOssUrl(string path, string fileName, byte[] bytes, string ext); string GetOssUrl(string path, string fileName, string base64Str, string ext); Task PostAsync(string url, dynamic input, int? timeout = null); } }