mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 11:01:27 +03:00
13 lines
371 B
C#
13 lines
371 B
C#
using Ardalis.Specification.EntityFrameworkCore;
|
|
using PracticeCalendar.Domain.Common.Interfaces;
|
|
|
|
namespace PracticeCalendar.Infrastructure.Persistence
|
|
{
|
|
public class EfRepository<T> : RepositoryBase<T>, IRepository<T> where T : class, IAggregateRoot
|
|
{
|
|
public EfRepository(ApplicationDbContext dbContext) : base(dbContext)
|
|
{
|
|
}
|
|
}
|
|
}
|