public async Task Consume(ConsumeContext <ForgetQuoteRequest> context)
        {
            var response = await _quoteService.ForgetQuote(context.Message);

            await context.RespondAsync(new HandlerResponse(response));
        }