public void Create(CountryModel1 toCreate)
 {
     _countryList.Add(toCreate);
 }
 public void Update(CountryModel1 toUpdate)
 {
     _countryList.Remove(_countryList.Find(x => x.ID == toUpdate.ID));
     _countryList.Add(toUpdate);
 }