17 lines
430 B
C#
17 lines
430 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, IYesAuthentication>
|
|
{
|
|
|
|
public SavedEventService(ILogger<SavedEventService> logger, SASGContext context, IYesAuthentication auth) : base(logger, context, auth)
|
|
{
|
|
}
|
|
}
|
|
}
|