Api/Brizco.Repository/Repositories/Base/Contracts/IRepository.cs

10 lines
268 B
C#

namespace Brizco.Repository.Repositories.Base.Contracts
{
internal interface IRepository<T> where T : class, IApiEntity
{
DbSet<T> Entities { get; }
IQueryable<T> Table { get; }
IQueryable<T> TableNoTracking { get; }
}
}