api/HamyanEdalat.Repository/Repositories/Base/Contracts/IRepository.cs

10 lines
274 B
C#
Raw Normal View History

2024-03-09 19:53:01 +03:30
namespace HamyanEdalat.Repository.Repositories.Base.Contracts
{
internal interface IRepository<T> where T : class, IApiEntity
{
DbSet<T> Entities { get; }
IQueryable<T> Table { get; }
IQueryable<T> TableNoTracking { get; }
}
}