Guest User

Untitled

a guest
Oct 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2. using System.Web.Routing;
  3. using FubuMVC.Core;
  4. using FubuMVC.StructureMap;
  5.  
  6. namespace YouGrade
  7. {
  8. public class Global : System.Web.HttpApplication
  9. {
  10. void Application_Start(object sender, EventArgs args)
  11. {
  12. FubuApplication
  13. .For<YouGradeRegistry>()
  14. .StructureMapObjectFactory(x => x.AddRegistry<IoCRegistry>())
  15. .Bootstrap(RouteTable.Routes);
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment