public RoleAssignmentController(Stores.IRoleAssignmentStore store, Stores.ICollectionStore collectionStore, IRepresenter <RoleAssignment, T> representer)
 {
     Store           = store;
     CollectionStore = collectionStore;
     Representer     = representer;
 }
Exemplo n.º 2
0
 public CollectionController(Stores.ICollectionStore store, Stores.IRoleAssignmentStore roleStore, IRepresenter <Collection, T> representer)
 {
     Store       = store;
     RoleStore   = roleStore;
     Representer = representer;
 }