Development Environment Visual Studio 2019 and above Dot Net 5
USER GUIDE This Application provides simple web api to manage user and bank account
Running application steps:
- Update BankContext connection strings in appsettings.json. e.g. server [ServerName]\MSSQLSERVERDEV
- Build BankWebApplication.sln solution and Hit F5, and screen will show with local host url, e.g. https://localhost:44369/api/user. Note : this can be changed/adjusted later on
- Bank Account Db be created.
- Import Postman package can be used for testing.
- Error will be log to C:\Temp\bank\logs. This can be customised in nlog.config.
Api lists:
- Create user : /api/user/create
- Get user bank account : /api/bankaccount
- Deposit : /api/bankaccount/deposit
- Withdraw : /api/bankaccount/withdraw
Enjoy!