conception_mvc.dot 384 B

1234567891011121314151617181920212223242526
  1. digraph G {
  2. rankdir = LR
  3. node [
  4. fontname = "Helvetica"
  5. fontsize = 10
  6. shape = "record"
  7. ]
  8. Controleur [ label = "{ Controleur }" ]
  9. Vue [ label = "{ Vue }" ]
  10. Stock [ label = "{ Stock }" ]
  11. edge [
  12. dir = both
  13. arrowhead = "none"
  14. arrowtail = "diamond"
  15. ]
  16. Controleur -> Vue
  17. Controleur -> Stock
  18. }