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.
14 lines
392 B
14 lines
392 B
2 years ago
|
using System;
|
||
|
using Znyc.Cloudcar.Admin.Commons.Entitys;
|
||
|
|
||
|
namespace Znyc.Cloudcar.Admin.Commons.Core.IRepositories
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 只读仓储接口,提供查询相关方法
|
||
|
/// </summary>
|
||
|
/// <typeparam name="T"></typeparam>
|
||
|
/// <typeparam name="TKey"></typeparam>
|
||
|
public interface IReadOnlyRepository<T, TKey> : IDisposable where T : Entity
|
||
|
{
|
||
|
}
|
||
|
}
|