I currently have no problem with injecting into the controllers that inherit from the ApiController. However when I try the standard controller the error concerning a parameterless constructor occurs.
I understand that the following:
GlobalConfiguration.Configuration.DependencyResolver = new NinjectResolver(kernel);
only sets the injection for the controllers inheriting from the ApiController.
My question is, what do i need to do to enable the controllers inheriting form teh Controller class to access the Ninject resolver?