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 : ICrudAppService { Task> GetPhones(Guid id, GetPersonPhonesFilter filter); Task AddPhone(Guid id, PhoneDto phoneDto); Task RemovePhone(Guid id, string number); Task GetWithAuthorized(); Task GetWithComplexType(GetWithComplexTypeInput input); } }