How would I best accomplish this psudeo code:
MyUser u = new MyUser(); MyAuthorizer a = new MyAuthorizer(u); //creates my authorizer with the user info ApplyToAllEntities() // Hard Part ?????
Maybe you need to use Dependency Injection scopes.
And for each user call the scope associated with him/her.