Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IEventService.cs
2019-03-09 14:03:25 +01:00

12 lines
201 B
C#

using System.Collections.Generic;
using LaDOSE.Entity;
using LaDOSE.Entity.Wordpress;
namespace LaDOSE.Business.Interface
{
public interface IEventService : IBaseService<Event>
{
}
}