https://github.com/aniekanbane/bank-simulation
Simulation of common banking transactions
https://github.com/aniekanbane/bank-simulation
banking csharp oop programming
Last synced: 5 days ago
JSON representation
Simulation of common banking transactions
- Host: GitHub
- URL: https://github.com/aniekanbane/bank-simulation
- Owner: aniekanBane
- Created: 2021-11-14T05:24:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T10:41:56.000Z (over 2 years ago)
- Last Synced: 2023-10-12T07:02:29.939Z (over 2 years ago)
- Topics: banking, csharp, oop, programming
- Language: C++
- Homepage:
- Size: 538 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bank Transaction Simulation
Simulation of common banking transactions.
This project is based of the C#101 tutorials on .NET series and Learning C# by Joe Marini on LinkedIn learning
## Getting Started
clone the repository and in your terminal do the following command
```bash
git clone https://github.com/aniekanBane/bank-simulation.git
```
## RUN
### C++
Create build directory
```shell
mkdir build && cd build
```
Build Cmake with BUILD_TESTS `OFF` (download boost to use enable testing)
```shell
cmake ../cpp -DBUILD_TESTS=OFF && cmake --build
```
Finally run the program
```shell
./Bank-CPP
```
### CSharp
```bash
dotnet run --project csharp/Bank
```
Or use vscode, you can clone it from there and run the program **easier**
### Operations
>**Images are from the csharp version**
- The start page

- Account selection

- Operations page

- Example choice (List of Transactions)
