Beispiel #1
0
        public static int AddTags(string tagName)
        {
            TagDao tagDao = new TagDao();
            int    result = 0;

            if (tagDao.GetTags(tagName) <= 0)
            {
                result = tagDao.AddTags(tagName);
            }
            return(result);
        }