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