Newer
Older
GuardClauses / src / ApplicationCore / Interfaces / IReadRepository.cs
@Derek Comartin Derek Comartin on 15 Aug 2022 188 bytes Init
using Ardalis.Specification;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

public interface IReadRepository<T> : IReadRepositoryBase<T> where T : class, IAggregateRoot
{
}