14 lines
398 B
C#
14 lines
398 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Models;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.DAL.Services.Interfaces;
|
|
|
|
namespace PARR.DAL.Services.Implementations
|
|
{
|
|
internal class RoleService : BaseRepository<Role>, IRoleService
|
|
{
|
|
public RoleService(DataContext dataContext, ILogger<RoleService> logger) : base(logger, dataContext) { }
|
|
}
|
|
}
|