Domain model

0
I am practicing on a project where one employee can submit feedback for other employees and vice versa. I have designed following domain model for that: But how should I progress so that I can maitain who is submitting the feedback for whom?
asked
1 answers
2

Hi Rohit,

You’ll need another association from Feedback to Employee for that. One association will register who the feedback is for, the other will be who it’s from. 

So Feedback_Employee_Submitter and Feedback_Employee_Receiver. 

answered