using System.Threading.Tasks; using Volo.Abp.DependencyInjection; namespace Win_in.Sfs.Wms.DataExchange.Iac.QadAgent.PostServices; public interface IPostService : ITransientDependency { Task PostAsync(string baseUrl, string apiUrl, string content, string username, string password); }