private void ShowWizard() { Shell.ShowDialog <BudgetEquationWizardShellViewModel, BudgetEquationWizardVM>( new { ValueTypes = ValueTypes.ToList(), OperatorTypes = OperatorTypes.ToList(), Incomes = CachedService.GetAllIncomes().ToList(), Savings = CachedService.GetAllSavings().ToList(), CashFlows = CachedService.GetAllCashFlows().ToList(), CashFlowGroups = CachedService.GetAllCashFlowGroups().ToList(), Equations = Equations.ToList(), Equation = EquationToEdit, BudgetCalculatorEvaluator = BudgetCalculatorEvaluator, }, null, null); }