UCADevClub / HIS

0 stars 0 forks source link

Vaccine (CRUD) UI/UX #64

Open lulanovl opened 5 months ago

lulanovl commented 5 months ago

Create Vaccine
As a Branch Administrator, I want to add new vaccine information to the database so that our medical team can reference it when administering vaccinations.

Read Vaccine
As a Branch Administrator, I want to retrieve detailed information about a vaccine so that it can be reviewed and referenced when necessary.

Update Vaccine
As a Branch Administrator, I want to update existing vaccine information in the database to ensure it is current and accurate.

Delete Vaccine
As a Branch Administrator, I want to remove outdated or incorrect vaccine information from the database to maintain accurate records.

lulanovl commented 5 months ago

Vaccine (CRUD)

Create Vaccine

Description: Implement a function to add a new vaccine to the database.

Fields:

Acceptance Criteria: A new vaccine can be added with all required fields.

Read Vaccine

Description: Implement a function to retrieve a vaccine’s details from the database.

Fields: All fields of the vaccine entity.

Acceptance Criteria: Able to retrieve details of a vaccine by its name.

Update Vaccine

Description: Implement a function to update an existing vaccine’s details.

Fields: All fields of the vaccine entity.

Acceptance Criteria: Able to update details of a vaccine. Only the fields provided in the request will be updated.

Delete Vaccine

Description: Implement a function to delete a vaccine from the database.

Acceptance Criteria: A vaccine can be deleted by its ID.