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