public Diagnostic(EDiagnosticType diagnosticType, ECheckLevel checkLevel)
     : this(diagnosticType, checkLevel, String.Empty)
 {
 }
 public Diagnostic(EDiagnosticType diagnosticType, ECheckLevel checkLevel, string decription)
 {
     DiagnosticType = diagnosticType;
     CheckLevel = checkLevel;
     Description = decription;
 }
 public Diagnostic(EDiagnosticType diagnosticType)
     : this(diagnosticType, ECheckLevel.Off, String.Empty)
 {
 }