2022-03-20 19:36:15 +01:00
|
|
|
|
using LaDOSE.Entity;
|
2018-10-22 01:13:42 +02:00
|
|
|
|
using LaDOSE.Entity.Wordpress;
|
2018-10-07 03:03:38 +02:00
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IEventService : IBaseService<Event>
|
|
|
|
|
|
{
|
2022-03-20 02:59:48 +01:00
|
|
|
|
|
2022-03-20 19:36:15 +01:00
|
|
|
|
Event GetBySlug(string tournamentSlug);
|
|
|
|
|
|
Event GetByName(string name);
|
2019-03-09 14:03:25 +01:00
|
|
|
|
|
2018-10-07 03:03:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|