fssa-batch3 / fssa-batch3/sec_a_hariharan.veerakumar__corejava_project_2
Product module | Create Product
- Dominant language
- Java
- Stars
- 0
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
### Admin story:
As an admin user, I want to add new products to the website's catalog so that customers can view and purchase the latest offerings.
### DAO:
- [ ] createProduct ( )
### Service:
- [ ] productCreate ( )
### Service Test:
TestCreateProduct
- [ ] testCreateProduct
- [ ] testNullProduct
### Estimation
- 4 Hours.
### Flow chart:
```mermaid
flowchart TB
Start((Start))
EnterProductInfo((Enter Product Information))
ValidateInfo{Validate Information}
CreateProduct((Create Product))
DisplaySuccess((Display Success))
End((End))
Start --> EnterProductInfo
EnterProductInfo --> ValidateInfo
ValidateInfo --> |Valid| CreateProduct
ValidateInfo --> |Invalid| End
CreateProduct --> DisplaySuccess
DisplaySuccess --> End
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.