Install the Nuget Package Install-Package Ninject.Web Modify NinjectWebCommon.cs Put your registrations in: private static void RegisterServices(IKernel kernel) eg: kernel.Bind<ISomeService>().To<SomeImplementation>().InSingletonScope(); kernel.Bind<ISomeOtherService>().To<SomeOtherImplementation>().InTransientScope(); kernel.Bind<