Hello,
I've a small question about how to achieve the following:
I have an ISA relationship as follows:
- salesperson
- manager
- boss
they are all employees of my company, however. A salesperson can work at different stores of my company and the boss and manager can only work at one store. How a can I achieve this?
Cause my employee entity has connection with store with a certain constraint, or do I need to look at otherwise and use connection from salesperson to connect to store, cause there is actually only one boss so, I think that would be my approach to tackle this problem.
Any suggestions?