Ejemplo n.º 1
0
        private void SaveShows()
        {
            var userSettings = new UserSettings {
                Shows = shows.ToList()
            };

            pm.Save("index", userSettings);
        }
Ejemplo n.º 2
0
 private void SaveShows()
 {
     try
     {
         var userSettings = new UserSettings {
             Shows = shows.ToList()
         };
         pm.Save("index", userSettings);
     }
     catch (Exception ex)
     {
         ErrorManager.Log(ex);
     }
 }
Ejemplo n.º 3
0
 public void SaveUserInfo()
 {
     _persistenceManager.Save(UsernameKey, _userInfoDictionary[UsernameKey]);
     _persistenceManager.SaveSecure(PasswordKey, _userInfoDictionary[PasswordKey]);
 }
Ejemplo n.º 4
0
 public void SavePath(string path)
 {
     _persistenceManager.Save(PathSettingsKey, path);
     _path = path;
 }