Пример #1
0
        public static void BindServiceCollection(this IBindableIocService container,
                                                 Action <IServiceCollection> collectionConfig)
        {
            var sc = new ServiceCollection();

            collectionConfig(sc);
            container.BindServiceCollection(sc);
        }