Smash test
test debug Result Disctinct by selector Refactoring Smash/Challonge Test Resultat Html for Kiouze
This commit is contained in:
@@ -18,4 +18,5 @@ namespace LaDOSE.Business.Interface
|
||||
Task<ChallongeTournament> GetTournament(int idTournament);
|
||||
Task<ChallongeTournament> GetTournament(string urlTournament);
|
||||
}
|
||||
|
||||
}
|
||||
15
LaDOSE.Src/LaDOSE.Service/Interface/ISmashProvider.cs
Normal file
15
LaDOSE.Src/LaDOSE.Service/Interface/ISmashProvider.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using LaDOSE.Business.Provider.SmashProvider;
|
||||
using LaDOSE.Entity.Challonge;
|
||||
|
||||
namespace LaDOSE.Business.Interface
|
||||
@@ -10,5 +11,6 @@ namespace LaDOSE.Business.Interface
|
||||
Task<List<ChallongeTournament>> GetTournaments(DateTime? start, DateTime? end);
|
||||
|
||||
Task<TournamentsResult> GetTournamentsResult(List<int> ids);
|
||||
Task<TournamentsResult> GetSmashResult(string tournamentSlug);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user