Example #1
0
 private static string GetCity(string place_name, string country)
 {
     foreach (City city in StaticCalls.GetCityList(Nestoria.GetCountry(false, country)))
     {
         if (city.City_Name == place_name)
         {
             return(city.City_ID.ToString());
         }
     }
     return(Nestoria.InsertCity(place_name, country));
 }