public CountryService()
        {
            _persistenceManager = new PersistenceManager();
            Countries = new ObservableCollection<CountryInGroup>();
            LoadCollectionWithGroups(_persistenceManager.LoadContries());

            Retrieve();
        }