I have a simple MVC3 Web application. I use structureMap as a dependency Injection.
It works fine with my HomeController, but when I go to a second Controller I have thi error: MissingMethodException : No zero parameters constructor.
I followed every step I found in tutorials...
Thx.
Here's the code :
public class HomeController : AuthorizedController
{
IRepository<User> _repository;
public HomeController(IRepository<User> repository)
{
_repository = repository;
}
}
public class AccountController : AuthorizedController
{
private readonly IRepository<User> _repository;
public AccountController(IRepository<User> repository)
{
_repository = repository;
}
}
And I use this simple injection:
For<IRepository<User>>().Use<UserRepository>();
zero parameters constructor. My bet is, you don't have it, or it isn't accessible (public) – sehe Oct 25 '11 at 13:06