16 lines
394 B
C#
16 lines
394 B
C#
using API.Authentication.Interfaces;
|
|
using API.DTO.Base;
|
|
using DAL.Contexts;
|
|
using DAL.Models;
|
|
using DAL.Models.Audits;
|
|
|
|
namespace API.Services
|
|
{
|
|
public class EventService : ServiceBase<EventService, EventDTO, Event, AuditEvent, IYesAuthentication>
|
|
{
|
|
public EventService(ILogger<EventService> logger, SASGContext context, IYesAuthentication auth) : base(logger, context, auth)
|
|
{
|
|
}
|
|
}
|
|
}
|