예제 #1
0
 public void Save(IEncryptedStore <UserSettings> encryptedStore) => encryptedStore.Save(this);
예제 #2
0
 public static UserSettings Load(IEncryptedStore <UserSettings> encryptedStore) => encryptedStore.Load();
예제 #3
0
 protected JournalCmdletBase()
 {
     _encryptedStore = EncryptedStoreFactory.Create <UserSettings>();
     _settings       = UserSettings.Load(_encryptedStore);
 }