Exemplo n.º 1
0
        public List <CityModel> getCityList()
        {
            List <CityModel> cityList = new List <CityModel>();

            try
            {
                cityList = _dbCityDalHelper.getCityList();
                if (cityList != null)
                {
                    return(cityList);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(cityList);
        }