Look how easy it is to bootstrap IOC in application's startup evet:
// ConfigureFubuMVC is explained in the last post
And NhibernateRegsitry class contains all information for our interfaces.
public class NHibernateRegistry : Registry
{
public NHibernateRegistry()
{
ForSingletonOf().Use();
For().HybridHttpOrThreadLocalScoped().Use();
....
.......
}
}
No comments:
Post a Comment