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