Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stoolrossa/5943554 to your computer and use it in GitHub Desktop.
Save stoolrossa/5943554 to your computer and use it in GitHub Desktop.
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