public void RegisterWithContainer(IWindsorContainer container)
{
container.Register(Component.For<TemporaryLocalDbManager>().UsingFactoryMethod(() => this));//Register and resolve instance once so that it is disposed with the container
container.Resolve<TemporaryLocalDbManager>();
}