示例#1
0
        public int AddValidCity(City city)
        {
            try
            {
                int result = services.AddCity(city);
                return(result);
            }
            catch (SqlException)
            {
                throw;
            }

            catch (Exception)
            {
                throw;
            }
        }