2019-05-30 00:42:12 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2022-03-11 01:14:56 +01:00
|
|
|
|
using LaDOSE.Business.Provider.SmashProvider;
|
2019-05-30 00:42:12 +02:00
|
|
|
|
using LaDOSE.Entity.Challonge;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ITournamentService
|
|
|
|
|
|
{
|
2019-08-06 01:56:33 +02:00
|
|
|
|
Task<List<ChallongeTournament>> GetTournaments(DateTime? start, DateTime? end);
|
2019-05-30 00:42:12 +02:00
|
|
|
|
|
|
|
|
|
|
Task<TournamentsResult> GetTournamentsResult(List<int> ids);
|
2022-03-11 01:14:56 +01:00
|
|
|
|
Task<TournamentsResult> GetSmashResult(string tournamentSlug);
|
2022-03-19 22:54:55 +01:00
|
|
|
|
|
2019-05-30 00:42:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|