public async Task Consume(ConsumeContext <IPlaceOrderRequest> context)
        {
            var bus = BusConfigurator.ConfigureBus();

            Pulse pulse    = new Pulse();
            var   response = await pulse.PlaceOrder(context.Message.LocationCode, context.Message);

            PulseOrderProducer priceOrderProducer = new PulseOrderProducer(bus, context);
            await priceOrderProducer.PlaceOrder(context.Message.LocationCode, response);
        }