Example #1
0
        public HighlightDialogViewModel(IAppServices appServices,
                                        IProtoConfigManager <HighlightConfig> highlightConfigManager) : base(appServices)
        {
            _highlightConfigManager = highlightConfigManager;

            SetupCommands();

            LoadConfigs();
        }
Example #2
0
 public LogViewerGridViewModel(IAppServices appServices,
                               IUserDefinedSettings settings,
                               IProtoConfigManager <HighlightConfig> highlightConfigManager,
                               string filePath) : base(appServices)
 {
     _settings = settings;
     _highlightConfigManager = highlightConfigManager;
     LoadHighlightSettings();
     LocalPath = filePath;
     ReadFile(filePath);
 }