public void Register(IAccount account)
        {
            if (Accounts == null)
            {
                Accounts = new AccountCollection();
            }

            Accounts.Add(account.Id);
        }
 public Customer()
 {
     Accounts = new AccountCollection();
 }