|
|
@ -8,6 +8,8 @@ namespace eShopOnContainers.iOS.Services |
|
|
|
{ |
|
|
|
public class SettingsServiceImplementation : ISettingsServiceImplementation |
|
|
|
{ |
|
|
|
#region Internal Implementation
|
|
|
|
|
|
|
|
readonly object _locker = new object(); |
|
|
|
|
|
|
|
NSUserDefaults GetUserDefaults() => NSUserDefaults.StandardUserDefaults; |
|
|
@ -89,6 +91,8 @@ namespace eShopOnContainers.iOS.Services |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ISettingsServiceImplementation
|
|
|
|
|
|
|
|
public bool AddOrUpdateValue(string key, bool value) => AddOrUpdateValueInternal(key, value); |
|
|
|