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