This is more an architectural question…
I am looking to create a domain that sells widgets (as an example)
Now I have three sales reps, that each sell different kinds of
widgets, and do not need to know about each other.
I don’t want to repeat myself (of course!) with the shopping cart
logic or the transactional logic.
So, should I simply make a view for each user and then direct the
requests to the appropriate view? or is there a better way of doing
this?