Skip to content

Instantly share code, notes, and snippets.

@straubt1
Created August 21, 2015 12:25
Show Gist options
  • Save straubt1/05677636a055c3c9c254 to your computer and use it in GitHub Desktop.
Save straubt1/05677636a055c3c9c254 to your computer and use it in GitHub Desktop.
AOPinIoC_DataInstaller
public class DataInstaller : IWindsorInstaller
{
public void Install(IWindsorContainer container, IConfigurationStore store)
{
container.Register(Component.For<IProjectData>()
.ImplementedBy<ProjectDataLocal>());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment