Defines the WizardData type.
Inheritance: IWizardData
        /// <summary>
        /// Registers the wizard data.
        /// </summary>
        public void RegisterWizardData()
        {
            WizardData wizardData = new WizardData
            {
                WindowTitle = "Add Nuget Packages",
                WindowHeight = 600,
                WindowWidth = 680,
                WizardSteps = this.GetWizardsSteps()
            };

            this.registerService.Register<IWizardData>(wizardData);
        }
        /// <summary>
        /// Gets the wizard data.
        /// </summary>
        /// <returns></returns>
        public void RegisterWizardData()
        {
            TraceService.WriteLine("ProjectFactory::RegisterWizardData");

            WizardData wizardData = new WizardData
            {
                WindowTitle = "Add Projects",
                WindowHeight = 600,
                WindowWidth = 680,
                WizardSteps = this.GetWizardsSteps()
            };

            this.registerService.Register<IWizardData>(wizardData);
        }