using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Telerik.Sitefinity.Services;

namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.Comments.Threads
{
    public partial class ThreadsSnippets
    {
        public void DeleteThread(string threadKey)
        {
            var cs = SystemManager.GetCommentsService();
            cs.DeleteThread(threadKey);
        }
    }
}