public void Handle(DB4Thing privateMessage)
        {
            // Check for a "stop" message
            if (privateMessage.Body.ToLower().Contains(StopIndicator))
            {
                // Ignore user
                _db4Repository.AddIgnoredQuotedDeltaPMUser(privateMessage.AuthorName);

                // Send confirmation message
                _redditService.ReplyToPrivateMessage(privateMessage.Id, _appConfiguration.PrivateMessages.ConfirmStopQuotedDeltaWarningMessage);
            }
        }