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 PermissionService : ServiceBase<PermissionService, PermissionDTO, Permission, AuditPermission, IYesAuthentication>
|
||
|
{
|
||
|
|
||
|
public PermissionService(ILogger<PermissionService> logger, SASGContext context, IYesAuthentication auth) : base(logger, context, auth)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|