Skip to content

Instantly share code, notes, and snippets.

@komainu85
Created May 21, 2015 19:51
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 komainu85/87b0521304204d07d873 to your computer and use it in GitHub Desktop.
Save komainu85/87b0521304204d07d873 to your computer and use it in GitHub Desktop.
IoC Registry
public class IoCRegistry : Registry
{
public IoCRegistry()
{
For(typeof(IRepository<Entity>)).Use(typeof(MikeRobbins.Repositories.EntityRespository));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment