using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Volo.Abp.Content; using Volo.Abp.TestApp.Application.Dto; namespace Volo.Abp.TestApp.Application; public interface IPeopleAppService : ICrudAppService { Task> GetPhones(Guid id, GetPersonPhonesFilter filter); Task> GetParams(IEnumerable ids, string[] names); Task AddPhone(Guid id, PhoneDto phoneDto); Task RemovePhone(Guid id, string number); Task GetWithAuthorized(); Task GetWithComplexType(GetWithComplexTypeInput input); Task DownloadAsync(); Task UploadAsync(IRemoteStreamContent streamContent); Task UploadMultipleAsync(IEnumerable streamContents); Task CreateFileAsync(CreateFileInput input); Task CreateMultipleFileAsync(CreateMultipleFileInput input); Task GetParamsFromQueryAsync(GetParamsInput input); Task GetParamsFromFormAsync(GetParamsInput input); }