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

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);
}
}