public Repository(DbContext db, IMapper mapper, IEntityDeepUpdater <TDomain, TEntity> updater) { this.context = db; this.Mapper = mapper; this.updater = updater; DbSet = context.Set <TEntity>(); }
public TestRepo(TestRecordContext db, IMapper mapper, IEntityDeepUpdater <Test, TestRecord> updater) : base(db, mapper, updater) { }