praktikum4/DAL/Repositories/PersonRepository.cs

15 lines
285 B
C#
Raw Normal View History

2017-03-08 15:47:46 +02:00
using System.Data.Entity;
using Domain;
using Interfaces;
namespace DAL.Repositories
{
public class PersonRepository : EFRepository<Person>, IPersonRepository
{
public PersonRepository(DbContext dbContext) : base(dbContext)
{
}
}
}