Added search options for tournament result + small test

This commit is contained in:
2019-05-28 00:20:02 +02:00
parent 80893e55de
commit 1f5961cdd0
7 changed files with 41 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using LaDOSE.Entity;
using LaDOSE.Entity.Wordpress;
@@ -15,5 +16,7 @@ namespace LaDOSE.Business.Interface
string CreateChallonge(int gameId, int wpEventId, IList<WPUser> additionPlayers);
Task<string> GetLastChallonge();
Task<List<Tuple<int, string, string>>> GetTournaments(DateTime? start, DateTime? end);
}
}