Newer
Older
TestingWithoutInterfaces / src / Infrastructure / Data / EfRepository.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 358 bytes Init
using Ardalis.Specification.EntityFrameworkCore;
using Microsoft.eShopWeb.ApplicationCore.Interfaces;

namespace Microsoft.eShopWeb.Infrastructure.Data;

public class EfRepository<T> : RepositoryBase<T>, IReadRepository<T>, IRepository<T> where T : class, IAggregateRoot
{
    public EfRepository(CatalogContext dbContext) : base(dbContext)
    {
    }
}