sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/IIntranetAppService.cs

11 lines
293 B
C#
Raw Normal View History

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);
}