Guest User

Untitled

a guest
Dec 10th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public static class Bootsrap
  2. {
  3. private static Container _container;
  4.  
  5. public static void Run()
  6. {
  7. _container = new Container(x =>
  8. x.Scan(r =>
  9. {
  10. r.TheCallingAssembly();
  11.  
  12. r.LookForRegistries();
  13. }));
  14.  
  15. DependencyResolver.SetResolver(new StructureMapDependencyResolver(_container));
  16. }
  17. }
Add Comment
Please, Sign In to add comment