public static bool Delete(String countryCode)
        {
            Country country = new Country();

            if (country.Load(countryCode))
            {
                return(country.Delete());
            }
            return(false);
        }
 public static bool Delete(Country country)
 {
     return(country.Delete());
 }