public void save(Country country) {
   persistence.persist(country);
 }
 public void remove(Country country) {
   persistence.remove(country);
 }