1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| @startuml usecase-7 skinparam handwritten true
skinparam usecase { BackgroundColor DarkSeaGreen BorderColor DarkSlateGray
BackgroundColor<< Main >> YellowGreen BorderColor<< Main >> YellowGreen ArrowColor Olive ActorBorderColor black ActorFontName Courier
ActorBackgroundColor<< Human >> Gold }
User << Human >> :Main Database: as MySql << Application >> (Start) << One Shot >> (Use the application) as (Use) << Main >>
User -> (Start) User --> (Use)
MySql --> (Use) @enduml
|