2018-10-22 01:13:42 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using LaDOSE.Entity;
|
|
|
|
|
|
using LaDOSE.Entity.Wordpress;
|
2018-10-07 03:03:38 +02:00
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IEventService : IBaseService<Event>
|
|
|
|
|
|
{
|
2018-10-08 23:33:18 +02:00
|
|
|
|
bool CreateChallonge(int eventId, int wpEventId);
|
2018-10-22 01:13:42 +02:00
|
|
|
|
List<WPUser> GetBooking(int eventId, int wpEventId, Game game);
|
2018-10-07 03:03:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|