Newer
Older
InMemoryBus / src / ApplicationCore / Interfaces / IReadRepository.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 188 bytes Init
using Ardalis.Specification;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

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