using System.Data.Entity; using Domain; using Interfaces; namespace DAL.Repositories { public class PersonRepository : EFRepository, IPersonRepository { public PersonRepository(DbContext dbContext) : base(dbContext) { } } }