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

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

public interface IRepository<T> : IRepositoryBase<T> where T : class, IAggregateRoot
{
}