В вашем файле Startup.Auth.cs прикрепите ваш ApplicationUserManager, как показано ниже
app.CreatePerOwinContext(() => DependencyResolver.Current.GetService<ApplicationUserManager>());
А в ApplicationUserManager используйте внедрение зависимостей для внедрения вашей бизнес-службы, как показано ниже
private readonly IBusinessService _businessService;
public ApplicationUserManager(IdentityRepository store, IBusinessService businessService) : base(store)
{
_businessService = businessService;
}
Наконец, в вашем файле DependencyRegistrar.cs настройте ваш преобразователь, как показано ниже
container.RegisterType<IAuthenticationManager>(new InjectionFactory(c => HttpContext.Current.GetOwinContext().Authentication));
container.RegisterType<IBusinessService, BusinessService>();