public string GetName() => securityCheck.GetName();
 public SecurityCheckResult(ISecurityCheck check, bool passed)
 {
     this.Id     = check.GetId();
     this.Name   = check.GetName();
     this.Passed = passed;
 }