using System.Collections.Generic; using System.Threading.Tasks; 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); Task GetLastChallonge(); } }