public AppParameterRepository(LearnBySpeakingContext context)
     : base(context)
 {
 }
Пример #2
0
 public Repository(LearnBySpeakingContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
 public TestRepository(LearnBySpeakingContext context)
     : base(context)
 {
 }
Пример #4
0
 public UnitOfWork(LearnBySpeakingContext context)
 {
     _context = context;
 }