I have a service that takes HttpControllerContext
for constructor injection. What is the binding for this? The bindings are setup in the NinjectWebCommon file under WebActivator.
By binding, I mean like this:
kernel.Bind<IUserService>().To<UserService>();
kernel.Bind<HttpControllerContext>().To</* ??? */ >(); //Whats the binding?