Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Interfaces / IReadRepository.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 188 bytes Init
using Ardalis.Specification;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

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