Files
LaDOSE/LaDOSE.Src/LaDOSE.Api/Controllers/EventController.cs
Darkstack 0150402ca6 Rework the UI
Fix Score
Add Kiouze CSS
Rework the tournaments API
2022-03-22 00:14:46 +01:00

29 lines
732 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LaDOSE.Business.Interface;
using LaDOSE.Entity;
using LaDOSE.Entity.Wordpress;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace LaDOSE.Api.Controllers
{
[AllowAnonymous]
//[Authorize]
[Produces("application/json")]
[Route("api/[controller]")]
public class EventController : GenericController<IEventService, Event>
{
private IGameService _gameService;
public EventController(IEventService service,IGameService gameService) : base(service)
{
this._gameService = gameService;
}
}
}