Example #1
0
 //# __________ PROTOCOL :: CONSTRUCTOR __________ #//
 public VmAccountOutputData(VmAccountData accountData)
 {
     AccountData = accountData;
 }
Example #2
0
 public static void ResetConfigurationToDefault()
 {
     JwList<VmAccount> accounts = VmSystemData.Default.Accounts;
     foreach( VmAccount account in accounts)
     {
         VmAccountData ad = new VmAccountData();
         ad.Account = account;
         DirectoryInfo di = new DirectoryInfo(ad.GetAccountDataPath());
         if( di.Exists ) di.Delete(true);
     }
     CloseApplication();
 }