TenantAppService.cs 445 B

123456789101112131415161718
  1. using BaseService.Systems.TenantManagement.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Volo.Abp.Application.Services;
  8. namespace BaseService.Systems.TenantManagement
  9. {
  10. public class TenantAppService : ApplicationService, ITenantAppService
  11. {
  12. public Task UpdateMenu(UpdateTenantMenuDto input)
  13. {
  14. return null;
  15. }
  16. }
  17. }