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

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

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