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

22 lines
574 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Threading.Tasks;
2019-03-09 14:03:25 +01:00
using LaDOSE.Entity;
using LaDOSE.Entity.Wordpress;
namespace LaDOSE.Business.Interface
{
public interface IWordPressService
{
WPEvent GetNextWpEvent();
List<WPEvent> GetWpEvent();
2019-03-09 14:03:25 +01:00
List<WPUser> GetBooking(int wpEventId, Game game);
List<WPUser> GetBookingOptions(int wpEventId, Game game);
bool UpdateBooking();
2019-03-12 21:41:30 +01:00
string CreateChallonge(int gameId, int wpEventId, IList<WPUser> additionPlayers);
Task<string> GetLastChallonge();
}
}