diff --git a/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/Options/RulesEngineOptions.cs b/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/Options/RulesEngineOptions.cs index 68ef78e49..85374968f 100644 --- a/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/Options/RulesEngineOptions.cs +++ b/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/Options/RulesEngineOptions.cs @@ -2,14 +2,18 @@ // Licensed under the MIT License. See LICENSE.txt in the project root for license information. // ReSharper disable once CheckNamespace + namespace Masa.BuildingBlocks.RulesEngine; public class RulesEngineOptions { public IServiceCollection Services { get; } - public RulesEngineOptions(IServiceCollection services) + public string Name { get; } + + public RulesEngineOptions(IServiceCollection services, string name) { Services = services; + Name = name; } } diff --git a/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/ServiceCollectionExtensions.cs b/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/ServiceCollectionExtensions.cs index b3d3dce2e..5f547e781 100644 --- a/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/ServiceCollectionExtensions.cs +++ b/src/BuildingBlocks/RulesEngine/Masa.BuildingBlocks.RulesEngine/ServiceCollectionExtensions.cs @@ -8,11 +8,14 @@ namespace Microsoft.Extensions.DependencyInjection; public static class ServiceCollectionExtensions { public static IServiceCollection AddRulesEngine(this IServiceCollection services, Action action) + => services.AddRulesEngine(Microsoft.Extensions.Options.Options.DefaultName, action); + + public static IServiceCollection AddRulesEngine(this IServiceCollection services, string name, Action action) { MasaApp.TrySetServiceCollection(services); services.TryAddSingleton(); services.TryAddTransient(serviceProvider => serviceProvider.GetRequiredService().Create()); - RulesEngineOptions rulesEngineOptions = new RulesEngineOptions(services); + RulesEngineOptions rulesEngineOptions = new RulesEngineOptions(services, name); action.Invoke(rulesEngineOptions); return services; } diff --git a/src/Contrib/RulesEngine/Masa.Contrib.RulesEngine.MicrosoftRulesEngine/RulesEngineOptionsExtensions.cs b/src/Contrib/RulesEngine/Masa.Contrib.RulesEngine.MicrosoftRulesEngine/RulesEngineOptionsExtensions.cs index 8ebc9844b..31e4e77ff 100644 --- a/src/Contrib/RulesEngine/Masa.Contrib.RulesEngine.MicrosoftRulesEngine/RulesEngineOptionsExtensions.cs +++ b/src/Contrib/RulesEngine/Masa.Contrib.RulesEngine.MicrosoftRulesEngine/RulesEngineOptionsExtensions.cs @@ -12,19 +12,15 @@ namespace Masa.BuildingBlocks.RulesEngine; public static class RulesEngineOptionsExtensions { public static RulesEngineOptions UseMicrosoftRulesEngine(this RulesEngineOptions rulesEngineOptions) - => rulesEngineOptions.UseMicrosoftRulesEngine(Options.DefaultName); - - public static RulesEngineOptions UseMicrosoftRulesEngine(this RulesEngineOptions rulesEngineOptions, ReSettings? reSettings) - => rulesEngineOptions.UseMicrosoftRulesEngine(Options.DefaultName, reSettings); + => rulesEngineOptions.UseMicrosoftRulesEngine(null); public static RulesEngineOptions UseMicrosoftRulesEngine( this RulesEngineOptions rulesEngineOptions, - string name, - ReSettings? reSettings = null) + ReSettings? reSettings) { - rulesEngineOptions.Services.Configure(name, options => + rulesEngineOptions.Services.Configure(options => { - options.TryAddRulesEngine(name, + options.TryAddRulesEngine(rulesEngineOptions.Name, serviceProvider => new RulesEngineClient(reSettings, serviceProvider.GetService>()) ); });