mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
14 lines
670 B
C#
14 lines
670 B
C#
using Application.Classes;
|
|
using Application.DataTransferObjects.CustomEventLeaderboard;
|
|
|
|
|
|
namespace Application.Repositories;
|
|
|
|
public interface ICustomEventLeaderBoardRepository
|
|
{
|
|
Task<Result<List<LeaderboardPointEventDto>>> GetPointEventLeaderboardAsync(Guid customEventCategoryId, CancellationToken cancellationToken);
|
|
|
|
Task<Result<List<LeaderboardParticipationEventDto>>> GetParticipationEventLeaderboardAsync(Guid customEventCategoryId, CancellationToken cancellationToken);
|
|
|
|
Task<Result<List<LeaderboardPointAndParticipationEventDto>>> GetPointAndParticipationEventLeaderboardAsync(Guid customEventCategoryId, CancellationToken cancellationToken);
|
|
} |