using System; using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace WmsWebApi.Parts; public interface IPartService : IApplicationService { //public Task AddAsync(PartDto dto); public Task AddAsync(object content); }