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> GetTournaments(DateTime? start, DateTime? end); Task GetTournamentsResult(List ids); Task GetSmashResult(string tournamentSlug); } }