15 lines
417 B
C#
15 lines
417 B
C#
using ConstructorApp.DataAccessLayer.Abstract;
|
|
using ConstructorApp.DataAccessLayer.Concrete;
|
|
using ConstructorApp.DataAccessLayer.Repositories;
|
|
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.DataAccessLayer.EntityFramework
|
|
{
|
|
public class EfTeamDal : GenericRepository<Team>, ITeamDal
|
|
{
|
|
public EfTeamDal(ConstructorContext context) : base(context)
|
|
{
|
|
}
|
|
}
|
|
}
|