https://github.com/sortiz0640/silverbank-
Simple project developed in Java for the practice of object oriented programming and the application of its features (inheritance, abstraction, classes, etc).
https://github.com/sortiz0640/silverbank-
banking java netbeans-ide netbeans-project oriented-object-programming
Last synced: 11 months ago
JSON representation
Simple project developed in Java for the practice of object oriented programming and the application of its features (inheritance, abstraction, classes, etc).
- Host: GitHub
- URL: https://github.com/sortiz0640/silverbank-
- Owner: sortiz0640
- Created: 2025-02-14T17:43:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-14T18:29:14.000Z (about 1 year ago)
- Last Synced: 2025-02-14T18:34:44.036Z (about 1 year ago)
- Topics: banking, java, netbeans-ide, netbeans-project, oriented-object-programming
- Language: Java
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silverbank 🖥️
Simple project developed in Java for the practice of object oriented programming and the application of its features (inheritance, abstraction, classes, etc).


### Features ✅
- Creation of bank accounts based on cardholder name, id, and desired account type.
- Transaction system (deposit, withdrawal, transfer) based on the cardholder ID initially registered in the account.
- Report generation (Accounts registered in the app and transaction log according to cardholder's id account)
- Each account includes its account number, which is automatically generated by the builder, as well as each transaction.
### Important notes 🛑
- Due to the simplicity of the project, no error control was implemented.
- The handling of nulls and input control according to the type of data requested from the user will normally cause the program to halt due to an exception.
- Transaction amounts and balances are handled with float variables.
- The project structure has been separated into different packages for greater order. The enums package manages the handling of menus, certain attributes of classes, etc.
- The transaction packages are subclasses that inherit features from the main Transactions class.
- IOHandler is in charge of providing methods for inputs and outputs with a simpler syntax based on JOptionPane.
- Names and ID's are Strings. Feel free using the format that you want.
Developer: sortiz0640