Example #1
0
        public int DeleteTelephone(string beforeTelephone)
        {
            int i = 0;

            using (SqlCommand command = new SqlCommand())
            {
                i = ExecuteNonQuery(TelephoneStringsSql.DeleteTelephone(beforeTelephone));
            }

            return(i);
        }