public static void Destroy(FeedbackItem feedback)
{
if (feedback == null)
throw new ArgumentNullException("feedback", "Cannot destroy a null comment.");
if (feedback.Approved)
throw new InvalidOperationException("Cannot destroy an approved comment. Please flag it as spam or trash it first.");
ObjectProvider.Instance().DestroyFeedback(feedback.Id);
}