Files
2025-05-01 15:18:30 +03:00

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)
{
}
}
}