using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace Business.Test { public interface ITestAppService: IApplicationService { Task TestApi(string name); Task GetUserCount(); //Task GetMenuTree(); } }