This project allows admin
- register new Covid patient information to the system
- delete the patient information from the system
- patient information is stored in a
PostgreSQL
database viaHibernate
--- src
|---main
| |---java
| | |---Application.java
| | |---com.covid.info
| | |---controller
| | | |---HomeController
| | | |---PersonController
| | |---domain
| | | |---Person
| | |---repository
| | | |---PersonRepository
| | |---service
| | |---PersonService
| | |---PersonServiceImplementation
| |---resources
| |---templates
| |---addUser.html
| |---home.html
| |---patients.html
| |---update.html
|---test
|---java
|---PersonServiceUnitTest