Exemplo n.º 1
0
 public void Save()
 {
     PersistFileHelper.Save(this.Value, "accounts");
 }
Exemplo n.º 2
0
 public AccountSetting()
 {
     this.Value = PersistFileHelper.Load <ObservableCollection <Account> >("accounts");
 }
Exemplo n.º 3
0
 public static ObservableCollection <Account> LoadAccounts()
 {
     return(PersistFileHelper.Load <ObservableCollection <Account> >("accounts"));
 }