Created
August 21, 2015 12:25
-
-
Save straubt1/05677636a055c3c9c254 to your computer and use it in GitHub Desktop.
AOPinIoC_DataInstaller
This file contains 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
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