Skip to content

Instantly share code, notes, and snippets.

@davybrion
Created September 3, 2012 18:41
Show Gist options
  • Select an option

  • Save davybrion/3612050 to your computer and use it in GitHub Desktop.

Select an option

Save davybrion/3612050 to your computer and use it in GitHub Desktop.
code snippets for "Introduction To IOC With Castle Windsor" post, part II
_container.AddComponent<IOrderDataAccessor, XmlOrderDataAccessor>();
static Container()
{
_container = new WindsorContainer();
_container.AddComponent<IOrderDataAccessor, XmlOrderDataAccessor>();
_container.AddComponent<IOrderRepository, OrderRepositoryWithAuditing>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment