Skip to content

Instantly share code, notes, and snippets.

@PaulDuffy3
Created July 23, 2016 00:48
Show Gist options
  • Save PaulDuffy3/28816a47322f4471081a09e19bfb04fa to your computer and use it in GitHub Desktop.
Save PaulDuffy3/28816a47322f4471081a09e19bfb04fa to your computer and use it in GitHub Desktop.
Inject Repository into Controller
private readonly Repositories.IUserRepository repository;
public HomeController(Repositories.IUserRepository iRepository)
{
repository = iRepository;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment