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