21 lines
581 B
21 lines
581 B
2 years ago
|
using Znyc.Cloudcar.Admin.Commons.IDbContext;
|
||
|
using Znyc.Cloudcar.Admin.Commons.Repositories;
|
||
|
using Znyc.Cloudcar.Admin.Security.Entitys;
|
||
|
using Znyc.Cloudcar.Admin.Security.IRepositories;
|
||
|
|
||
|
namespace Znyc.Cloudcar.Admin.Security.Repositories
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// �û��ƱҲִ�ʵ��
|
||
|
/// </summary>
|
||
|
public class CurrencyRepository : BaseRepository<CurrencyEntity, long>, ICurrencyRepository
|
||
|
{
|
||
|
public CurrencyRepository()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public CurrencyRepository(IDbContextCore context) : base(context)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|