public FakeUnitOfWork(FakeContext context)
 {
     _context = context;
     Users    = new UserRepository(_context);
 }
 public FakeUnitOfWork()
 {
     _context = new FakeContext();
     Users    = new UserRepository(_context);
 }