Esempio n. 1
0
 public void AddAccountToUser(UserEmailAccount newAccount)
 {
     CurrentUser.AddAccount(newAccount);
 }
Esempio n. 2
0
 public void DeleteAccount(UserEmailAccount account)
 {
     CurrentUser.accounts.Remove(account);
 }
Esempio n. 3
0
 public void AddAccount(UserEmailAccount newAccount)
 {
     accounts.Add(newAccount);
 }