using System; using System.Collections.Generic; using System.Threading.Tasks; using LaDOSE.Entity; using LaDOSE.Entity.Challonge; namespace LaDOSE.Business.Interface { public interface IExternalProviderService { Task> GetTournaments(DateTime? start, DateTime? end); Task GetTournamentsResult(List ids); Task GetSmashResult(string tournamentSlug); Task GetSmashResult2(string tournamentSlug); Task> GetChallongeEvents(List ids); } }