void InitializePresenterAndModel()
        {
            IDictionaryService dictionary    = (IDictionaryService)GetService(typeof(IDictionaryService));
            DTE                     dte      = (DTE)GetService(typeof(DTE));
            ISolutionModel          solution = new DteSolutionModel(dte.Solution, Site);
            CreateViewPageBaseModel model    = CreateModel(dictionary, solution, Site);

            _presenter = CreatePresenter(this, model);
            _presenter.OnViewReady();
        }
 void InitializePresenterAndModel()
 {
     IDictionaryService dictionary = (IDictionaryService)GetService(typeof(IDictionaryService));
     DTE dte = (DTE)GetService(typeof(DTE));
     ISolutionModel solution = new DteSolutionModel(dte.Solution, Site);
     CreateViewPageBaseModel model = CreateModel(dictionary, solution, Site);
     _presenter = CreatePresenter(this, model);
     _presenter.OnViewReady();
 }