Exemple #1
0
        private bool IsCityExits(City aCity)
        {
            City city = cityGateway.GetCityInformationByName(aCity.Name);

            if (city != null)
            {
                return(true);
            }
            return(false);
        }