2024-05-20 15:11:13 -05:00
|
|
|
using API.Authentication.Interfaces;
|
|
|
|
using API.DTO.Base;
|
|
|
|
using API.DTO.Base.Update;
|
|
|
|
using API.Services;
|
|
|
|
using DAL.Models;
|
|
|
|
using DAL.Models.Audits;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace API.Controllers
|
|
|
|
{
|
|
|
|
[ApiController]
|
|
|
|
[Route("api/v1/[controller]")]
|
2024-07-12 23:12:04 -05:00
|
|
|
public class EventController : CRUDBase<EventController, EventDTO, EventUpdateDTO, Event, AuditEvent, IEventAuthentication, EventService>
|
2024-05-20 15:11:13 -05:00
|
|
|
{
|
|
|
|
public EventController(ILogger<EventController> logger, UserService userService, EventService service) : base(logger, userService, service)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|