18 lines
508 B
18 lines
508 B
2 years ago
|
using Znyc.Recruitment.Admin.Commons.IDbContext;
|
||
|
using Znyc.Recruitment.Admin.Commons.Repositories;
|
||
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
||
|
using Znyc.Recruitment.Admin.Security.IRepositories;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Repositories
|
||
|
{
|
||
|
public class RoleRepository : BaseRepository<RoleEntityEntity, long>, IRoleRepository
|
||
|
{
|
||
|
public RoleRepository()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public RoleRepository(IDbContextCore dbContext) : base(dbContext)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|