I've been struggling to understand the transition from a UML Class Design Diagram to a UML Sequence Diagram for a school assignment. My design class diagram contains a central DataManager class that connects the use case control classes to the data table classes (ie. user, product, employee), however, do I need to include the data table classes in my use cases' sequence diagrams?
1 Answers
0
votes
So, in the end, I didn't phrase my question as I wanted to. I was asking if communications between the database tables and the data manager class should also appear in the sequence diagram. The answer is, they should. The whole point of having a sequence diagram is to guide a developer in the "development" of a class. For my diagrams, all messages I used for this communication had a standard sql()
operation for each message.
sql()
, since the tables are stored in an SQL database system. – mhernandez