Exemplo n.º 1
0
 public AccountController(AuthIdentityService perms, DataStoreFactory factory)
     : base(perms, factory)
 {
 }
Exemplo n.º 2
0
 public MembersController(AuthIdentityService perms, DataStoreFactory store)
     : base(perms, store)
 {
 }
 public OrganizationsController(AuthIdentityService perms, DataStoreFactory factory)
     : base(perms, factory)
 {
 }
Exemplo n.º 4
0
 public ControllerBase(AuthIdentityService permissions, DataStoreFactory storeFactory)
 {
     this.Permissions = permissions;
     this.StoreFactory = storeFactory;
 }