Exemplo n.º 1
0
 public UnitOfWork(TestAllDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public Repository(TestAllDbContext context)
 {
     _context = context;
     _unitOfWork=new UnitOfWork(_context);
 }
 public TestRepository(TestAllDbContext context) : base(context)
 {
 }