You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
744 B
26 lines
744 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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ��־�ִ�ʵ��
|
||
|
/// </summary>
|
||
|
public class OperationLogsRepository : BaseRepository<OperationLogsEntity, long>, IOperationLogsRepository
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// </summary>
|
||
|
public OperationLogsRepository()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// </summary>
|
||
|
/// <param name="dbContext"></param>
|
||
|
public OperationLogsRepository(IDbContextCore dbContext) : base(dbContext)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|