I am using Ninject's bbEventBroker extension to wire up some pub/sub in my application. I have business services which publish events, and then I have other classes which subscribe to events. The wiring with Ninject is working, with one problem. I don't see an obvious place where I should instantiate the event subscribers. Right now I am hacking it is, and just making sure all of the subscribers are requested into the kernel as singletons before anyone else uses it. But this doesn't seem right. If I do nothing, then there are no instances of the subscribers, and the events end up getting ignored.
How should I instantiate the subscribers to bbEventBroker events so that they end up wired into the kernel?