I'm learning how to design a Data Flow Diagram (DFD) for a system. I have a question that I can't answer myself. Let me give a scenario:-
In a system, a Trainer wanted to view his/her own profile information and a Trainee also want to view his/her own profile information.
Can the process (Retrieve profile information) be used by both entities:-
Or must be separated as they aren't viewing the same data:-
So, which one is right?
The second model one is more flexible since the processes have a higher cohesion and could be better reused since coupling is lower.
It is advisable to not only look at the functionality of an process but also look at reusability and maintenance. In the second solution you do not have to test retrieve Trainer profile process if the data structure of a Trainee object changes.