private void HookChildObject(SubsonicServiceConfiguration newValue, SubsonicServiceConfiguration oldValue)
        {
            if (oldValue != null)
            {
                oldValue.PropertyChanged -= SubsonicServiceConfigurationChanged;
            }

            if (newValue != null)
            {
                newValue.PropertyChanged += SubsonicServiceConfigurationChanged;
            }
        }
 public Subsonic8Configuration()
 {
     SubsonicServiceConfiguration = new SubsonicServiceConfiguration();
 }
 public void Setup()
 {
     _subject = new SubsonicServiceConfiguration();
 }