Skip to content

Instantly share code, notes, and snippets.

@lira92
Created December 6, 2016 15:55
Embed
What would you like to do?
dependency injection
private readonly IBancoRepository _bancoRepository;
public BancosController()
{
var repository = Global.container.GetInstance<IBancoRepository>();
_bancoRepository = repository;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment