Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IWordPressService.cs

15 lines
428 B
C#
Raw Normal View History

using System.Collections.Generic;
2019-03-09 14:03:25 +01:00
using LaDOSE.Entity;
using LaDOSE.Entity.Wordpress;
namespace LaDOSE.Business.Interface
{
public interface IWordPressService
{
List<WPEvent> GetWpEvent();
2019-03-09 14:03:25 +01:00
List<WPUser> GetBooking(int wpEventId, Game game);
List<WPUser> GetBookingOptions(int wpEventId, Game game);
bool UpdateBooking();
bool CreateChallonge(int gameId, int wpEventId);
}
}