test debug Result Disctinct by selector Refactoring Smash/Challonge Test Resultat Html for Kiouze
16 lines
479 B
C#
16 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using LaDOSE.Business.Provider.SmashProvider;
|
|
using LaDOSE.Entity.Challonge;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface ITournamentService
|
|
{
|
|
Task<List<ChallongeTournament>> GetTournaments(DateTime? start, DateTime? end);
|
|
|
|
Task<TournamentsResult> GetTournamentsResult(List<int> ids);
|
|
Task<TournamentsResult> GetSmashResult(string tournamentSlug);
|
|
}
|
|
} |