コード例 #1
0
 private void RemovecommentTag(CommentTag item, int commID)
 {
     _tag.RemoveCommentTag(item.Tag_Id, commID);
     //get list of ID
     //remove postTag
     //remove tag
     if (_tag.IfPostOrCommentHaveTags(item.Tag_Id))
     {
         _tag.RemoveTagsIfNotUsed(item.Tag_Id);
         _tag.SaveChanges();
     }
 }