Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IWordPressService.cs
darkstack 73407e5867
Some checks failed
Build App / Build (push) Failing after 43s
Dot net 8
2025-02-09 22:30:00 +01:00

21 lines
544 B
C#

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<WPEvent> GetWpEvent();
List<WPUser> GetBooking(int wpEventId, Game game);
List<WPUser> GetBookingOptions(int wpEventId, Game game);
string CreateChallonge(int gameId, int wpEventId, IList<WPUser> additionPlayers);
Task<string> GetLastChallonge();
}
}