You can use runtime DI like this (in a method of the partial controller):
var myService = (IMyService)HttpContext.RequestServices.GetService(typeof(IMyService));
You can use runtime DI like this (in a method of the partial controller):
var myService = (IMyService)HttpContext.RequestServices.GetService(typeof(IMyService));