15 lines
461 B
C#
15 lines
461 B
C#
using System.Collections.Generic;
|
|
using LaDOSE.Entity;
|
|
using LaDOSE.Entity.Wordpress;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface IWordPressService
|
|
{
|
|
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);
|
|
}
|
|
} |