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; }
public GroupsController(IGroupsDB groupsDB, IRightsDB rightsDB) { this.groupsDB = groupsDB; this.rightsDB = rightsDB; }
public UserGroupBindingController(IUserGroupBindingDB userGroupBindingDB, IUserDB userDB, IGroupsDB groupsDB) { this.userGroupBindingDB = userGroupBindingDB; this.userDB = userDB; this.groupsDB = groupsDB; }