using System; using System.Collections.Generic; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IStatisticsService { PageOutput GetParticipateTrialStat(ParticipateQueryDto param); List GetParticipateTrialList(Guid userId); } }