private void RefreshSteps()
        {
            if (SelectedConfiguration != null)
            {
                ConfigurationSteps.Clear();

                foreach (ConfigurationStepModel cfgs in SelectedConfiguration.Steps)
                {
                    ConfigurationSteps.Add(cfgs);
                }

                ConfigurationStepsAreEnabled = true;
            }
            else
            {
                ConfigurationStepsAreEnabled = false;
            }
        }