Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haiderabb/banking-management-system
Developed A Banking Management System using Object Oriented Programming concepts in C++
https://github.com/haiderabb/banking-management-system
classes-and-inheritance classes-and-objects cpp oop-concepts oops-in-cpp
Last synced: 6 days ago
JSON representation
Developed A Banking Management System using Object Oriented Programming concepts in C++
- Host: GitHub
- URL: https://github.com/haiderabb/banking-management-system
- Owner: HaiderABB
- License: mit
- Created: 2023-08-10T15:04:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-03T08:06:52.000Z (7 months ago)
- Last Synced: 2024-05-03T13:19:29.228Z (7 months ago)
- Topics: classes-and-inheritance, classes-and-objects, cpp, oop-concepts, oops-in-cpp
- Language: C
- Homepage:
- Size: 52 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Banking Management System in C++
## Overview
This Banking Management System is a console-based application developed in C++ utilizing Object-Oriented Programming (OOP) concepts. The project incorporates file handling to store and retrieve data, and it introduces three main classes: User, Company, and BankManager.
## Features
1. **User Class:**
- Creation of user accounts.
- Deposit and withdraw funds.
- View account balance and transaction history.2. **Company Class:**
- Establishment of company profiles.
- Deposit and withdraw company funds.
- Monitor company account details.3. **BankManager Class:**
- Access to administrative functions.
- Manage user and company accounts.
- View overall financial status.4. **File Handling:**
- Data persistence using file handling techniques.
- User and company account information stored in files for long-term usage.## Class Structure
1. **User Class:**
- Attributes: User ID, name, balance, transaction history.
- Functions: CreateAccount, Deposit, Withdraw, DisplayBalance, DisplayTransactionHistory.2. **Company Class:**
- Attributes: Company ID, name, balance, transaction history.
- Functions: CreateCompany, Deposit, Withdraw, DisplayBalance, DisplayTransactionHistory.3. **BankManager Class:**
- Functions: ManageUserAccounts, ManageCompanyAccounts, ViewFinancialStatus.## File Structure
1. **user_data.txt:**
- Stores user account information.2. **company_data.txt:**
- Stores company account information.3. **manager_data.txt:**
- Stores administrative data.