Example #1
0
 public MEController(IUserDB userDB, IGroupsDB groupsDB, TokenDecoderService tokenDecoder, IUserSettingsDB userSettingsDB, IPostGroupDB postGroupDB)
 {
     this.userDB         = userDB;
     this.groupsDB       = groupsDB;
     this.tokenDecoder   = tokenDecoder;
     this.userSettingsDB = userSettingsDB;
     this.postGroupDB    = postGroupDB;
 }
Example #2
0
 public GroupsController(IGroupsDB groupsDB, IRightsDB rightsDB)
 {
     this.groupsDB = groupsDB;
     this.rightsDB = rightsDB;
 }
Example #3
0
 public UserGroupBindingController(IUserGroupBindingDB userGroupBindingDB, IUserDB userDB, IGroupsDB groupsDB)
 {
     this.userGroupBindingDB = userGroupBindingDB;
     this.userDB             = userDB;
     this.groupsDB           = groupsDB;
 }