public SettingsWindow(ISettingsView settingsView, IImagesProvider imagesProvider)
 {
     this.InitializeComponent();
     this.Content = settingsView;
     this.Icon    = imagesProvider.GetImageSource(ImageType.PluginIcon);
 }
 public PredictionsWindow(IPredictionsView predictionsView, IImagesProvider imagesProvider)
 {
     this.InitializeComponent();
     this.Content = predictionsView;
     this.Icon    = imagesProvider.GetImageSource(ImageType.PluginIcon);
 }