Asmita04 / bank_app

This is simple bank application to practice Java coding
0 stars 0 forks source link

[Task-2] Implement Account Registration flow #3

Closed harry8906 closed 1 year ago

harry8906 commented 1 year ago

As a technology analyst we would like to track the progress of implementation of 'Account Registration" operation from main menu.

Details -

On a main menu, we have various operations as option for user to select from. One of the operation is to Register a New user. An user needs to input following information while registration -

User First Name User Last Name User Aadhaar Opening Balance

Few other fields a system needs to take care of are as follows - Account Number - this is an unique number representing a bank account. Remember a person can have multiple bank accounts. One way to design a bank account number is to append a numeric sequence after person's aadhar number.

Ex. If a person has aadhar number as - 123 then two accounts a person can have are as follows -

123-1 123-2 Account number is String.

harry8906 commented 1 year ago

Implemented in task-2