Created
February 7, 2011 01:26
-
-
Save cammerman/813893 to your computer and use it in GitHub Desktop.
IoC Boostrappers, version 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| internal class InstallBootstrapper | |
| { | |
| public IContainer Build() | |
| { | |
| var builder = new ContainerBuilder(); | |
| return builder.Build(); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| internal class ServiceBootstrapper | |
| { | |
| public IContainer Build() | |
| { | |
| var builder = new ContainerBuilder(); | |
| return builder.Build(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment