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

9 lines
172 B
C#

using LaDOSE.Entity;
namespace LaDOSE.Business.Interface
{
public interface IEventService : IBaseService<Event>
{
bool CreateChallonge(int dto);
}
}