public TroubleshootingCompletedEventArgs(Components.TroubleshootingType tt) : this(tt, null)
 {
 }
 public TroubleshootingCompletedEventArgs(Components.TroubleshootingType tt, object _result) : base()
 {
     this.TroubleshootingType = tt;
     this.Result = _result;
 }