Esempio n. 1
0
 public UnitOfWork()
 {
     _context = DbContextFactory.Create("DB1");
     PermutationsRepository = new PermutationsRepository(_context);
 }
Esempio n. 2
0
 public UnitOfWork(DataContext context)
 {
     _context = context;
     PermutationsRepository = new PermutationsRepository(_context);
 }