Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/ITournamentService.cs

14 lines
353 B
C#

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