public string SaveRegion(Country _country)
 {
     return(SaveSqlQuery("Region", _country.region));
 }
 public string SaveCity(Country _country)
 {
     return(SaveSqlQuery("City", _country.capital));
 }