using System; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Volo.Abp.TestApp.Application.Dto; namespace Volo.Abp.TestApp.Application { public interface IPeopleAppService : IAsyncCrudAppService { Task> GetPhones(Guid id, GetPersonPhonesFilter filter); Task AddPhone(Guid id, PhoneDto phoneDto); Task RemovePhone(Guid id, long phoneId); Task GetWithComplexType(GetWithComplexTypeInput input); } }