Created
July 7, 2013 14:01
-
-
Save stoolrossa/5943554 to your computer and use it in GitHub Desktop.
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
using Castle.MicroKernel.Registration; | |
using Castle.MicroKernel.SubSystems.Configuration; | |
using Castle.Windsor; | |
using ESRI.ArcGIS.Geodatabase; | |
namespace Blog.SoeExample.Installer | |
{ | |
public class ArcObjectsInstaller : IWindsorInstaller | |
{ | |
public void Install(IWindsorContainer container, IConfigurationStore store) | |
{ | |
container.Register(Component.For<IQueryFilter>() | |
.ImplementedBy<QueryFilterClass>() | |
.LifestyleTransient()); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment