示例#1
0
 public UserController(IUserDataService userDataService, IManageUserService manageUserService, IAddUserService addUserService, ISessionService sessionService)
 {
     _userDataService   = userDataService;
     _manageUserService = manageUserService;
     _addUserService    = addUserService;
     _sessionService    = sessionService;
 }
示例#2
0
 public ManageController(ITwoFactorAuthService twoFactorAuthService, IManageDataService manageDataService, IManageUserService manageUserService,
                         ICredentialsService credentialsService)
 {
     _twoFactorAuthService = twoFactorAuthService;
     _manageDataService    = manageDataService;
     _manageUserService    = manageUserService;
     _credentialsService   = credentialsService;
 }
示例#3
0
        public ManageController(ITwoFactorAuthService twoFactorAuthService, IManageDataService manageDataService, IManageUserService manageUserService,
                                IProfileImageService profileImageService)
        {
            _twoFactorAuthService = twoFactorAuthService;
            _manageDataService    = manageDataService;
            _manageUserService    = manageUserService;

            _profileImageService = profileImageService;
        }
示例#4
0
 public ManageUserController(ManageUserService manageUserService, IManageUserAPIController manageUserAPIController, ManageContentService manageContentService, IManageContentAPIController manageContentAPIController, IUserService userService, IManageCategoryService manageCategoryService)
 {
     _manageUserService       = manageUserService;
     _manageUserAPIController = manageUserAPIController;
     _manageContentApi        = manageContentAPIController;
     _manageContentService    = manageContentService;
     _userService             = userService;
     _manageCategoryService   = manageCategoryService;
 }
示例#5
0
        public UserController(
            IGroupUserDataService groupUserDataService,
            IGroupUserService groupUserService,
            IManageUserService manageUserService,
            IImpersonateService impersonateService,
            IGroupAdminUserDataService groupAdminUserDataService,
            IOptions <IdentityUIClaimOptions> identityUICalimOptions,
            IOptions <IdentityUIEndpoints> identityUIEndpoints)
        {
            _groupUserDataService = groupUserDataService;
            _groupUserService     = groupUserService;

            _manageUserService  = manageUserService;
            _impersonateService = impersonateService;

            _groupAdminUserDataService = groupAdminUserDataService;

            _identityUIClaimOptions = identityUICalimOptions.Value;
            _identityUIEndpoints    = identityUIEndpoints.Value;
        }
示例#6
0
 public ManageUserController(IManageUserService manageUserService)
 {
     _manageUserService = manageUserService;
 }
示例#7
0
 public UserGroup10Controller(IManageAccountClientService manageAccountClientService, IManageUserService manageUserService, IAdminAppService adminAppService)
 {
     _manageAccountClientService = manageAccountClientService;
     _manageUserService          = manageUserService;
     _adminAppService            = adminAppService;
 }
示例#8
0
 public Program(IManageUserService targetService)
 {
     _targetService = targetService;
 }
示例#9
0
 public UserController(IRoleDataService roleDataService, IManageUserService manageUserService)
 {
     _roleDataService   = roleDataService;
     _manageUserService = manageUserService;
 }
示例#10
0
 public ManageUserController(IManageUserService manageUserService, IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization)
 {
     this.manageUserService = manageUserService;
 }
示例#11
0
 public ManageUserController(IManageUserService manageUserService, ILocalizationService localizationService)
 {
     this.manageUserService   = manageUserService;
     this.localizationService = localizationService;
 }
示例#12
0
 public ManageUserAPIController(IManageUserService _ManageUserService)
 {
     _manageUserService = _ManageUserService;
 }