using System; using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace WmsWebApi.Purchase; public interface IPurchaseService : IApplicationService { public Task AddAsync(object content); }