20 lines
558 B
C#
20 lines
558 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Castle.Windsor.MsDependencyInjection;
|
|
using Abp.Dependency;
|
|
using MineTec.ProManager.Identity;
|
|
|
|
namespace MineTec.ProManager.Migrator.DependencyInjection
|
|
{
|
|
public static class ServiceCollectionRegistrar
|
|
{
|
|
public static void Register(IIocManager iocManager)
|
|
{
|
|
var services = new ServiceCollection();
|
|
|
|
IdentityRegistrar.Register(services);
|
|
|
|
WindsorRegistrationHelper.CreateServiceProvider(iocManager.IocContainer, services);
|
|
}
|
|
}
|
|
}
|