Esempio n. 1
0
 public static void Backup(IDataStorage store)
 {
     store.Backup(typeof (MainViewModel).Name, _mainViewModel);
     store.Backup(typeof (LoginViewModel).Name, _loginViewModel);
     store.Backup(typeof (RegistrationViewModel).Name, _registrationViewModel);
 }
 public void Backup(IDataStorage store)
 {
     store.Backup(() => this.SearchText, this.SearchText);
     store.Backup(() => this.Items, this.Items);
 }
 public void Backup(IDataStorage store)
 {
     store.Backup(() => this.ScheduleView, this.ScheduleView);
     store.Backup(() => this.IsMyScheduleView, this.IsMyScheduleView);
     store.Backup(() => this.NotFoundText, this.NotFoundText);
     store.Backup(() => this.SessionIds, this.SessionIds);
 }
 public void Backup(IDataStorage store)
 {
     store.Backup(() => this.InitialSource, this.InitialSource);
 }