Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Commit

Permalink
DCU Updated to add new functionnalities.
Browse files Browse the repository at this point in the history
Add / delete data now linked to data type. Consult data func added
  • Loading branch information
Ttiki authored Oct 12, 2021
1 parent d762375 commit b92a982
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions PlantUML/dcu.puml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,26 @@ skinparam style strictuml
skinparam packageStyle rect
actor Humain
rectangle "Application" {
(Se connecter) as login
(Choisir un profil) as login
(Ajouter des données) as ad
(Supprimer des données) as sd
(Consulter les graphiques) as cg

(Consulter données) as cd
(Glycémie) as gly
(Corpulence) as cor
(Sommeil) as som
(Sport) as spo
}
Humain -- ad
Humain -- sd
Humain -- cg
Humain -- login
login <.. ad: <<include>>
login <.. sd: <<include>>
login <.. cg: <<include>>
Humain --> cd
Humain --> ad
Humain --> sd
Humain --> cg
Humain --> login
ad --cor
ad -- som
ad -- gly
ad -- spo
sd -- cor
sd -- som
sd -- gly
sd -- sp

0 comments on commit b92a982

Please sign in to comment.