C# Program that implements a simple banking system. With several methods to perform basic banking operations, such as creating an account, depositing money, and withdrawing money. It uses ADO.NET to interact with a SQL Server database.
- .NET IDE
- SQL Server Managment Studio
- A working Microsoft SQL Server LocalBD named "BankBD" and with a database called "Bank"
- A template of the tables
- Clone the repository
git clone https://github.com/pigluz/BankingSystem.git
- Restore the backup in SQL Server Managment Studio
- Start the server
- Build the code with
dotnet build
- Run
dotnet run --project BankingSystem
Working functions:
- Creating the account
- Depositing/Withdrawing
- Checking the history
- Checking the balance
- Better validation
- Better error handling
- More user-friendly interface
- Convert to WPF
Started: 01.04.2023