using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace Sozsoft.Platform.Intranet; public interface IIntranetAppService : IApplicationService { Task GetIntranetDashboardAsync(); Task UpdateSurveyResponseAsync(SubmitSurveyInput input); }