17 lines
444 B
C#
17 lines
444 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 SavedEventService : ServiceBase<SavedEventService, SavedEventDTO, SavedEvent, AuditSavedEvent, ISavedEventAuthentication>
|
|
{
|
|
|
|
public SavedEventService(ILogger<SavedEventService> logger, SASGContext context, ISavedEventAuthentication auth) : base(logger, context, auth)
|
|
{
|
|
}
|
|
}
|
|
}
|