19 lines
413 B
C#
19 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using IRaCIS.Application.Contracts;
|
|
using IRaCIS.Core.Infrastructure.Extention;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface IStatisticsService
|
|
{
|
|
|
|
PageOutput<UserParticipateTrialStat> GetParticipateTrialStat(ParticipateQueryDto param);
|
|
|
|
List<UserParticipateTrialDetail> GetParticipateTrialList(Guid userId);
|
|
|
|
|
|
|
|
}
|
|
}
|