Skip to content

Instantly share code, notes, and snippets.

@insightcoder
Last active August 21, 2017 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save insightcoder/cbfe9da427136e4009be7cd644eda0f7 to your computer and use it in GitHub Desktop.
Save insightcoder/cbfe9da427136e4009be7cd644eda0f7 to your computer and use it in GitHub Desktop.
public class Foo : IFoo
{
private IBar _bar;
public Foo()
{
_bar = IocContainer.Resolve<IBar>();
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment