Пример #1
0
 public UnitOfWork(SampleContext sampleContext)
 {
     _context = sampleContext;
 }
Пример #2
0
 public SampleRepository(SampleContext context)
 {
     _context = context;
     _dbSet   = context.Set <T>();
 }