9 lines
172 B
C#
9 lines
172 B
C#
using LaDOSE.Entity;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface IEventService : IBaseService<Event>
|
|
{
|
|
bool CreateChallonge(int dto);
|
|
}
|
|
} |