dotnet-db-context/PoweredSoft.DbContext.Core/IDbQueryService`.cs
2021-09-20 10:21:48 -04:00

10 lines
198 B
C#

using System.Linq;
namespace PoweredSoft.DbContext.Core
{
public interface IDbQueryService<TEntity> : IOrderedQueryable<TEntity>, IDbQueryService
where TEntity : class
{
}
}