fssa-batch3 / sec_b_maruthan.alagar__corejava_project_2

https://fssa-batch3.github.io/sec_b_maruthan.alagar__corejava_project_2/
0 stars 0 forks source link

Find User By Phone number #13

Open maruthu001 opened 1 year ago

maruthu001 commented 1 year ago

Feature : Find User By Phone Number

User Story:

User can view the single User details.

Prerequisites:

Validations:

Form Validation:

Flow:

graph  TD;

A[User Service: Get User by phone number]  -->  B[Form Validation]
B  -- Yes -->  C{Business Validation}
B -- No --> G[Throws Exception]

C  -- Yes -->  D[User DAO: find user by phone number]

D  -->  E[User Service: Display user details]

C  -- No -->  F[User Service: User Not Found ]
maruthu001 commented 1 year ago

Completed :)