public void AccountIsCreatedWithDefaultValues()
        {
            var account = new Account();

            Assert.IsTrue(account.IsActive);
        }
 public void DisplayAccounts(Account[] collection)
 {
     Accounts.Clear();
     foreach (var account in collection.Maybe(_ => _, new Account[0]).Where(a => !a.IsHeader))
     {
         Accounts.Add(account);
     }
 }