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