public void Update(Hacker hacker)
 {
     _inner.Update(hacker);
     _logger.Information("Update called with {@hacker}", hacker);
 }
 public void Add(Hacker hacker)
 {
     _inner.Add(hacker);
     _logger.Information("Add called with {@hacker}", hacker);
 }