Exemplo n.º 1
0
 public FakeUnitOfWork(FakeContext context)
 {
     _context = context;
     Users    = new UserRepository(_context);
 }
Exemplo n.º 2
0
 public FakeUnitOfWork()
 {
     _context = new FakeContext();
     Users    = new UserRepository(_context);
 }