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

9 lines
142 B
C#
Raw Normal View History

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