protected override async Task ProcessMessageAsync(PaymentCompletedEvent evt)
        {
            await _voucherService.ProcessPaymentRequestAsync(Guid.Parse(evt.PaymentRequestId));

            _log.Info($"Handled {typeof(object).Name}", evt);
        }