protected override void CustomizeTransport(TransportExtensions <SqlServerTransport> transport)
        {
            #region Setup subscription to another database / service:

            transport.UseCatalogForEndpoint("Sales", SqlHelper.BuildCatalogName("Sales")); //Associate "Sales" service with the database it owns
            transport.Routing().RegisterPublisher(typeof(OrderReceived), "Sales");         //Do not use app.config to define where the publisher is

            #endregion
        }