Exemple #1
0
 public void LoadAccounts(ICollection <Guid> accountIds)
 {
     _accounts = new AccountCollection();
     foreach (var account in accountIds)
     {
         _accounts.Add(account);
     }
 }
Exemple #2
0
 public void Register(Guid accountId)
 {
     _accounts.Add(accountId);
 }
Exemple #3
0
 public virtual void Register(Guid accountId)
 {
     Accounts = new AccountCollection();
     Accounts.Add(accountId);
 }