Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/ISmashProvider.cs
darkstack 454c12a5a9
All checks were successful
Build App / Build (push) Successful in 1m53s
Modification get smash
2024-03-22 23:58:43 +01:00

24 lines
677 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using LaDOSE.Business.Provider.SmashProvider;
using LaDOSE.Entity;
using LaDOSE.Entity.Challonge;
namespace LaDOSE.Business.Interface
{
public interface ISmashProvider
{
Task<Event> GetEvent(string slug);
Task<List<Tournament>> GetResults(ref List<Tournament> tournaments);
Task<List<Tournament>> GetSets(ref List<Tournament> tournaments);
Task<Event> ParseEvent(string slug);
Task<TournamentResponse> GetTournament(string sludge);
Task<TournamentResponse> GetNames(string slug);
Task<List<Game>> GetGames(string name);
}
}