Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IWordPressService.cs
Darkstack 2fe08f938a REST to a .Net Standard Library
Test REST in discord bot and WPF
Small improvements
2019-03-16 12:22:52 +01:00

16 lines
495 B
C#

using System.Collections.Generic;
using LaDOSE.Entity;
using LaDOSE.Entity.Wordpress;
namespace LaDOSE.Business.Interface
{
public interface IWordPressService
{
WPEvent GetNextWpEvent();
List<WPEvent> GetWpEvent();
List<WPUser> GetBooking(int wpEventId, Game game);
List<WPUser> GetBookingOptions(int wpEventId, Game game);
bool UpdateBooking();
string CreateChallonge(int gameId, int wpEventId, IList<WPUser> additionPlayers);
}
}