Exemplo n.º 1
0
 public void AddAccounts(JwList<VmAccount> v, String fileName)
 {
     JwList<JwCsvRow> rows = JwUtility.ReadCsvFile(fileName);
     foreach(JwCsvRow row in rows)
     {
         VmAccount ac = new VmAccount(row.Fields);
         v.Add(ac);
     }
 }
Exemplo n.º 2
0
 public void InitializeAccount(VmAccount account)
 {
     VmAccountData.Default.Account = account;
 }
Exemplo n.º 3
0
 //# __________ PROTOCOL :: PUBLIC __________ #//
 public void AssignAccount(VmAccount account)
 {
     VmApplication.Default.AssignAccount(account);
     ShowFirstLoginPanel();
 }
Exemplo n.º 4
0
 public void AssignAccount(VmAccount account)
 {
     VmAccountData.Default.Account = account;
 }