Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions case-study/suits/model/suits-markdown.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
```mermaid

classDiagram
Direction TB
class I_Lawyer{
<<interface>>
+representClients() void
+research() void
+analysis(String doc) void
+fileDocument(String type) void
}

class I_OperatingOfficer{
<<interface>>
+supportExecutives() void
+developPolicies() void
+coordinate() void
}

class I_Partner{
<<interface>>
+decisionMaking() void
+profitRevenue() void
}
class TypeJob{
<<abstract>>
}
class Person {
-name String
-surname String
-gender String
-job TypeJob
}

class Firm{
-name String
-foundation LocalDate
+listEmployes () String
+info() String
}

class Law{
-insuranceQuote String
-govApprovement String
+info() String

}
class Tech {
-nonDisclosure String
-ipAdress String
+info() String
}
class Attorney{
-legalNumber int
}

class COO{

}

class NamePartner{

}

class Secretary{
+organizing() void
+prepare(String doc) void
}

TypeJob <|-- Attorney
TypeJob <|-- Secretary

Firm <|-- Law
Firm <|-- Tech

I_Lawyer <.. Attorney
I_OperatingOfficer <.. COO
I_Partner <.. COO
I_Partner <.. NamePartner

Secretary <|-- COO
Attorney <|-- NamePartner

Person "1" -- "*" Firm : -employeers ArrayList < Person>
Person -- TypeJob