Skip to content

Instantly share code, notes, and snippets.

@cammerman
Created February 7, 2011 01:26
Show Gist options
  • Save cammerman/813893 to your computer and use it in GitHub Desktop.
Save cammerman/813893 to your computer and use it in GitHub Desktop.
IoC Boostrappers, version 1
internal class InstallBootstrapper
{
public IContainer Build()
{
var builder = new ContainerBuilder();
return builder.Build();
}
}
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