Setting up Restore

Configuring the messaging service is enough for restore
  <configSections>
    <section name="docaBusService" type="DocaAzure.Messaging.Config.BusServiceConfiguration, DocaAzure.Messaging" />
  </configSections>

  <docaBusService>
    <queues>
      <clear/>

      <add queueName="restoretables" maxDequeueCount="2" concurrentProcessingThrottle="10" errorQueueName="error" purgeOnStartup="false">
        <regularQueueSchedule initialPollInterval="10000" pollIntervalIncrement="1000" maximumWaitTimeWhenIdle="60000"/>
        <azureQueueTransport messageInvisibleTime="7200000"/>
      </add>

      <add queueName="restoreblobs" maxDequeueCount="2" concurrentProcessingThrottle="10" errorQueueName="error" purgeOnStartup="false">
        <regularQueueSchedule initialPollInterval="10000" pollIntervalIncrement="1000" maximumWaitTimeWhenIdle="60000"/>
        <azureQueueTransport messageInvisibleTime="7200000"/>
      </add>

    </queues>
  </docaBusService>
            // configure bus service
            BusService.Service
                .ConfigureQueuesFromFile()
                .RegisterHandlers(typeof(BackupHandlersAssemblyMarker).Assembly);

            // start bus service
            BusService.Service.Start();