public Presenter(
     ICCEView view,
     Help.IPresenter help,
     IAlertPopup alerts,
     ITestParsing testParsing
     )
 {
     this.dialog = view;
     this.dialog.SetEventsHandler(this);
     this.help        = help;
     this.alerts      = alerts;
     this.testParsing = testParsing;
     this.dialog.InitStaticControls(
         "XSLT editor", "XSL transformation code that normalizes your XML log messages", "Help");
 }
 public Presenter(
     ICCEView view,
     Help.IPresenter help,
     IAlertPopup alerts,
     ITestParsing testParsing,
     IFactory objectFactory
     )
 {
     this.dialog = view;
     this.dialog.SetEventsHandler(this);
     this.help           = help;
     this.alerts         = alerts;
     this.objectsFactory = objectFactory;
     this.testParsing    = testParsing;
     this.dialog.InitStaticControls(
         "JUST editor", "JUST transformation code that normalizes your JSON log messages", "Help");
 }
 public Presenter(
     ICCEView view,
     Help.IPresenter help,
     IAlertPopup alerts,
     ITempFilesManager tempFilesManager,
     IObjectFactory objectFactory
     )
 {
     this.dialog = view;
     this.dialog.SetEventsHandler(this);
     this.help             = help;
     this.alerts           = alerts;
     this.objectsFactory   = objectFactory;
     this.tempFilesManager = tempFilesManager;
     this.dialog.InitStaticControls(
         "XSLT editor", "XSL transformation code that normalizes your XML log messages", "Help");
 }