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

Create Price #8

Closed maruthu001 closed 1 year ago

maruthu001 commented 1 year ago

Feature : Price Creation

User Story:

User can create new Price.

Prerequisites:

Validations:

Form Validation:
Business Validation:

Flow:

graph  TD;

A[Price Service: Create Price]  -->  B[Form Validation]

B  -- Yes -->  C{Business Validation}
B -- No --> G[Throws Exception]

C  -- Yes -->  D[Price DAO: Create Price]

D  -->  E[Price Service: Price Created ]

C  -- No -->  F[Price Service: Product Doesn't Exists ]
maruthu001 commented 1 year ago

Completed