Exercise 13.3g Account View
Module providing Graphical View Components for different account types
Classes
-------
AccountView
abstract class for providing a graphical view for an Account
SavingsAccountView
class providing a graphical view for a SavingsAccount
LongTermSavingsAccountView
class providing a graphical view for a LongTermSavingsAccount
CreditAccountView
class providing a graphical view for a CreditAccount
Variables
---------
account_views_dictionary : dict[str, AccountView]
dictionary mapping `Account.Account.account_type` strings to the corresponding
`AccountView` subclass
| Modules | ||||||
| ||||||
| Classes | ||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||
| Data | ||
| account_views_dictionary = {'Credit Account': <class 'UI.GUI.AccountView.CreditView'>, 'Long Term Savings Account': <class 'UI.GUI.AccountView.LongTermSavingsAccountView'>, 'Savings Account': <class 'UI.GUI.AccountView.SavingsAccountView'>} | ||