ITestAppService.cs 323 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Volo.Abp.Application.Services;
  4. namespace Business.Test
  5. {
  6. public interface ITestAppService: IApplicationService
  7. {
  8. Task<string> TestApi(string name);
  9. Task<long> GetUserCount();
  10. //Task<dynamic> GetMenuTree();
  11. }
  12. }