2024-04-22 18:04:14 -05:00
|
|
|
using API.Authentication.Interfaces;
|
|
|
|
using API.DTO.Base;
|
|
|
|
using DAL.Contexts;
|
|
|
|
using DAL.Models;
|
|
|
|
using DAL.Models.Audits;
|
|
|
|
|
|
|
|
namespace API.Services
|
|
|
|
{
|
2024-07-13 13:08:59 -05:00
|
|
|
public class SavedEventService : ServiceBase<SavedEventService, SavedEventDTO, SavedEvent, AuditSavedEvent, ISavedEventAuthentication>
|
2024-04-22 18:04:14 -05:00
|
|
|
{
|
|
|
|
|
2024-07-13 13:08:59 -05:00
|
|
|
public SavedEventService(ILogger<SavedEventService> logger, SASGContext context, ISavedEventAuthentication auth) : base(logger, context, auth)
|
2024-04-22 18:04:14 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|