|
|
|
@ -8,14 +8,14 @@ namespace Volo.Abp.Settings |
|
|
|
{ |
|
|
|
Task<string> GetOrNullAsync([NotNull]string name); |
|
|
|
|
|
|
|
Task<string> GetOrNullAsync([NotNull]string name, [NotNull] string entityType, string entityId, bool fallback = true); |
|
|
|
Task<string> GetOrNullAsync([NotNull]string name, [NotNull] string entityType, [CanBeNull] string entityId, bool fallback = true); |
|
|
|
|
|
|
|
Task<List<SettingValue>> GetAllAsync(); |
|
|
|
|
|
|
|
Task<List<SettingValue>> GetAllAsync([NotNull] string entityType, string entityId, bool fallback = true); |
|
|
|
Task<List<SettingValue>> GetAllAsync([NotNull] string entityType, [CanBeNull] string entityId, bool fallback = true); |
|
|
|
|
|
|
|
Task SetAsync([NotNull] string name, string value, bool forceToSet = false); |
|
|
|
|
|
|
|
Task SetAsync([NotNull] string name, string value, [NotNull] string entityType, string entityId, bool forceToSet = false); |
|
|
|
Task SetAsync([NotNull] string name, string value, [NotNull] string entityType, [CanBeNull] string entityId, bool forceToSet = false); |
|
|
|
} |
|
|
|
} |