11 lines
323 B
C#
11 lines
323 B
C#
|
using NG_2023_Kanban.DataLayer.DbStartup;
|
|||
|
using NG_2023_Kanban.DataLayer.Entities;
|
|||
|
using NG_2023_Kanban.DataLayer.Interfaces;
|
|||
|
|
|||
|
namespace NG_2023_Kanban.DataLayer.Repositories;
|
|||
|
|
|||
|
public class RoleRepository : BaseRepository<Role>, IRoleRepository
|
|||
|
{
|
|||
|
public RoleRepository(DatabaseContext context) : base(context) { }
|
|||
|
}
|