Summary
This assessment requires you to develop a Simple Bank Management Systems using C#. Bank account details, user data, banking transactions etc. are to be stored in files. It has to be a C# console application. The specifications/requirements are detailed in the rest of the document.
Students need to submit the complete project folder in zip format, which will have the complete C# code, solution file, data files etc. required to run/test the program. Any special instructions required to run the code has to be provided in a text file.
Assignment Objectives
The purpose of this assignment is to demonstrate competence in the following skills.
Ensure firm understanding of the .Net framework, C# basic and syntax
Understand how the .NET framework implements OO concepts and the implications this has for new language design
Array and string manipulation
Creating custom classes and methods in C#
File operations and handing in C# q Creating interactive console applications q Create good OO design.
Tasks:
In this assignment you need to develop a menu driven Simple Bank Management Systems using C#. Bank account details, user data, banking transactions etc. should be stored/saved in files. The components/menu items that should be in the screen/console are described below, but you are free to add more options as appropriate based on your application design. It should be a console app
Login Menu:
Functionality: Provide secured access to the banking system.
Input fields required:
Username : Display the typed characters as it is
Password : Display “*” instead of the actual characters
Field checks required:
Username and Password to be cross-checked with the valid Credentials available in the file to store the login details (txt)
Username should be unique
Display appropriate error message if the credentials are invalid and allow to re-enter the values.
Main Menu:
Functionality: Used to navigate through the system using certain options related to common banking operations. Menu item required:
Create a new account: To create a new account and store it in the respective account file
Search for an account: Search for an account using account number
Deposit: Deposit money in a valid account
Withdraw: Withdraw a valid amount for an account
A/C statement: Display account statement for a valid account number
Delete account: Delete the account
Exit: Exit from the application or return back to the login screen
Ask user to select an item number(1-7) from the menu
(See sample screen)
Field checks required:
The item number selected should be an integer
Check for a valid input (1-7) else return back to the menu without any error.
Check for a non-integer input and return back to the menu without any error.
Create a new account:
Functionality: Create a new account in the banking system Input fields required:
First Name : Text field
Last Name: Text field
Address: Text field
Phone: Integer
Email: Text field
Field checks required:
Phone: Integer, should not be more than 10 characters
Email: Check if the entered string has “@” (required), “gmail.com”, “outlook.com”, and “school.edu.au” in the domain (optional)
If the information was correct in the input fields:
Create a file with the name <account_number>.txt and save all the information in a proper format, which makes it easy to retrieve.
Generate a unique account number (6-8 digits) and display it.
Email the account details to the email ID provided.
Return to the Main menu upon-key press.
Search for an account:
Functionality: Search for a valid account and display the account details if an account is found
Input fields required:
- Account Number: integer
Field checks required:
Account number: Integer, should not more than 10 characters. If an invalid account number is provided, appropriate error message should be provide, with an option to re-enter/check another account. If the account number is valid, display the account details similar to as shown in the sample screen.
Once the search is complete, return to the Main Menu.
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of