コード例 #1
0
 public void AddAccountToUser(UserEmailAccount newAccount)
 {
     CurrentUser.AddAccount(newAccount);
 }
コード例 #2
0
 public void DeleteAccount(UserEmailAccount account)
 {
     CurrentUser.accounts.Remove(account);
 }
コード例 #3
0
 public void AddAccount(UserEmailAccount newAccount)
 {
     accounts.Add(newAccount);
 }