test debug Result Disctinct by selector Refactoring Smash/Challonge Test Resultat Html for Kiouze
15 lines
392 B
C#
15 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using LaDOSE.Business.Provider.SmashProvider;
|
|
using LaDOSE.Entity.Challonge;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface ISmashProvider
|
|
{
|
|
Task<List<ChallongeTournament>> GetTournaments(DateTime? start, DateTime? end);
|
|
Task<ResponseType> GetTournament(string sludge);
|
|
|
|
}
|
|
} |