2026-05-05 17:59:30 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Volo.Abp.Application.Services;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Platform.Intranet;
|
|
|
|
|
|
|
|
|
|
|
|
public interface IIntranetAppService : IApplicationService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<IntranetDashboardDto> GetIntranetDashboardAsync();
|
2026-05-06 07:54:04 +00:00
|
|
|
|
Task UpdateSurveyResponseAsync(SubmitSurveyInput input);
|
2026-05-05 17:59:30 +00:00
|
|
|
|
}
|