13 lines
252 B
C#
13 lines
252 B
C#
using LaDOSE.Entity;
|
|
using LaDOSE.Entity.Wordpress;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface IEventService : IBaseService<Event>
|
|
{
|
|
|
|
Event GetBySlug(string tournamentSlug);
|
|
Event GetByName(string name);
|
|
|
|
}
|
|
} |