You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using NPin.Framework.SettingManagement.Domain.Store;
|
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
using Volo.Abp.Settings;
|
|
|
|
|
|
|
|
|
|
namespace NPin.Framework.SettingManagement.Domain.Provider;
|
|
|
|
|
|
|
|
|
|
public class GlobalSettingManagementProvider: SettingManagementProvider, ITransientDependency
|
|
|
|
|
{
|
|
|
|
|
public override string Name => GlobalSettingValueProvider.ProviderName;
|
|
|
|
|
|
|
|
|
|
public GlobalSettingManagementProvider(ISettingManagementStore settingManagementStore) : base(settingManagementStore)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string? NormalizeProviderKey(string providerKey)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|