public void CreditInterests()
        {
            var accounts = store.GetAllAccounts();

            foreach (var account in accounts)
            {
                account.CreditInterest(InterestRate);
            }
        }