Advertisement
Guest User

Untitled

a guest
Mar 16th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.44 KB | None | 0 0
  1. @startuml
  2. class Riequilibrium {
  3.   nome
  4. }
  5.  
  6. class Employee {
  7.   first name
  8.   last name
  9.   birthday
  10. }
  11.  
  12.  
  13. class CEO {
  14.   first name
  15.   last name
  16.   birthday
  17.  
  18. }
  19.  
  20. class Specification_Document {
  21.   first name
  22.   last name
  23.   birthday
  24.  
  25. }
  26.  
  27. class Specification_Requirement {
  28.   name
  29.   description
  30.   completed
  31.   estimation delivery
  32.   variability in delivery
  33. }
  34.  
  35. class Report {
  36.  
  37. }
  38.  
  39. class Project {
  40.   first name
  41.   last name
  42.   birthday
  43.  
  44. }
  45.  
  46. class Contract {
  47.  
  48.   first name
  49.   last name
  50.   birthday
  51. }
  52.  
  53. class Developer {
  54.   first name
  55.   last name
  56.   birthday
  57.  
  58. }
  59.  
  60. class Secretary {
  61.   first name
  62.   last name
  63.   birthday
  64.  
  65. }
  66.  
  67. class Customer {
  68.   first name
  69.   last name
  70.   birthday
  71.  
  72. }
  73.  
  74. class Project_Type {
  75.  
  76.   first name
  77.   last name
  78.   birthday
  79. }
  80.  
  81. class Payment_Document {
  82.   payed
  83. }
  84.  
  85. Riequilibrium -- Project_Type : offer service
  86. Project_Type -- Project : is a
  87.  
  88. Project -- Contract : associated to
  89. Project -- Specification_Document : is related to
  90. Specification_Document o-- Specification_Requirement : is composed of
  91. Riequilibrium -- Employee : works in
  92. Secretary -|> Employee
  93. Developer -|> Employee
  94. Developer -- Specification_Requirement : has assigned
  95. Developer -- Report : send
  96. Report -- CEO : receive
  97. Report -- Specification_Document : is referred
  98. CEO -|> Employee
  99. Customer -- Project :requests
  100. Payment_Document -- Contract : has
  101. CEO -- Specification_Document : creates
  102. @enduml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement