示例#1
0
        public ServiceProviderHelper(IocScannerOptions options = null)
        {
            var sc = new ServiceCollection();

            sc.Scan <ServiceProviderHelper>(
                options
                );

            ServiceProvider = sc.BuildServiceProvider();
        }
示例#2
0
        public ServiceProviderHelper(IEnumerable <Assembly> assemblies, IocScannerOptions options = null)
        {
            var sc = new ServiceCollection();

            sc.Scan(
                assemblies,
                options
                );

            ServiceProvider = sc.BuildServiceProvider();
        }