public AccountRegisterController(ILocalAuthenticationService authentication_service,
                                  ICommandBus command_bus,
                                  IFormsAuthentication forms_authentication)
 {
     _authentication_service = authentication_service;
     _command_bus = command_bus;
     _forms_authentication = forms_authentication;
 }
Пример #2
0
 public FeaturesController(ILocalAuthenticationService authenticationService,
                           IUserService userService,
                           IExternalAuthenticationService externalAuthenticationService,
                           IFormsAuthentication formsAuthentication,
                           IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
 }
 public AccountRegisterController(ILocalAuthenticationService authentication_service,
                                  ICommandBus command_bus,
                                  IFormsAuthentication forms_authentication)
 {
     _authentication_service = authentication_service;
     _command_bus            = command_bus;
     _forms_authentication   = forms_authentication;
 }
Пример #4
0
 public AccountRegisterController(ILocalAuthenticationService authenticationService,
                                  ICustomerService customerService,
                                  ICookieAuthentication cookieAuthentication,
                                  IActionArguments actionArguments) : base(authenticationService,
                                                                           customerService,
                                                                           cookieAuthentication,
                                                                           actionArguments)
 {
 }
 public AccountRegisterController(ILocalAuthenticationService authenticationService,
                                  ICustomerService customerService,
                                  IExternalAuthenticationService externalAuthenticationService,
                                  IFormsAuthentication formsAuthentication,
                                  IActionArguments actionArguements)
     : base(authenticationService, customerService, externalAuthenticationService,
           formsAuthentication, actionArguements)
 {            
 }
 public AccountLogOnController(ILocalAuthenticationService authenticationService,
                               ICustomerService customerService,
                               IExternalAuthenticationService externalAuthenticationService,
                               IFormsAuthentication formsAuthentication,
                               IActionArguments actionArguements)
     : base(authenticationService, customerService, externalAuthenticationService,
            formsAuthentication, actionArguements)
 {
 }
Пример #7
0
 public AuthController(IAntiforgery antiForgeryService, ILocalAuthenticationService authService, IOptions <Toucan.Server.Config> serverConfig, ISignupService signupService, IVerificationProvider verificationProvider, ITokenProviderService <Token> tokenService)
 {
     this.antiForgeryService   = antiForgeryService;
     this.authService          = authService;
     this.serverConfig         = serverConfig.Value;
     this.signupService        = signupService;
     this.tokenService         = tokenService;
     this.verificationProvider = verificationProvider;
 }
Пример #8
0
 public AuthController(IAntiforgery antiForgeryService, ILocalAuthenticationService authService, CultureService cultureService, IOptions <Toucan.Server.Config> serverConfig, ISignupService signupService, ITokenProviderService <Token> tokenService, IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization)
 {
     this.antiForgeryService = antiForgeryService;
     this.authService        = authService;
     this.cultureService     = cultureService;
     this.serverConfig       = serverConfig.Value;
     this.signupService      = signupService;
     this.tokenService       = tokenService;
 }
Пример #9
0
 public BannersController(ILocalAuthenticationService authenticationService,
                          IUserService userService,
                          IBannerService bannerService,
                          IExternalAuthenticationService externalAuthenticationService,
                          IFormsAuthentication formsAuthentication,
                          IActionArguments actionArguments)
 {
     _bannerService = bannerService;
 }
Пример #10
0
 protected BaseAccountController(ILocalAuthenticationService authenticationService,
                                 ICustomerService customerService,
                                 ICookieAuthentication cookieAuthentication,
                                 IActionArguments actionArguments)
 {
     _authenticationService = authenticationService;
     _customerService       = customerService;
     _cookieAuthentication  = cookieAuthentication;
     _actionArguments       = actionArguments;
 }
 public PortfolioController(ILocalAuthenticationService authenticationService,
                            IUserService userService,
                            IProjectService projectService,
                            IExternalAuthenticationService externalAuthenticationService,
                            IFormsAuthentication formsAuthentication,
                            IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, formsAuthentication, actionArguments)
 {
     _projectService = projectService;
 }
 public ContactController(ILocalAuthenticationService authenticationService,
                          IUserService userService,
                          IBlogService blogService,
                          IExternalAuthenticationService externalAuthenticationService,
                          IFormsAuthentication formsAuthentication,
                          IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
     _blogService = blogService;
 }
 public SubscriberController(ILocalAuthenticationService authenticationService,
                             IUserService userService,
                             ISubscriberService subscriberService,
                             IExternalAuthenticationService externalAuthenticationService,
                             IFormsAuthentication formsAuthentication,
                             IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
     _subscriberService = subscriberService;
 }
 public BaseAccountController(ILocalAuthenticationService authenticationService, ICustomerService customerService, IExternalAuthenticationService externalAuthenticationService,
 IFormsAuthentication formsAuthentication,
 IActionArguments actionArguments)
 {
     _authenticationService = authenticationService;
     _customerService = customerService;
     _externalAuthenticationService = externalAuthenticationService;
     _formsAuthentication = formsAuthentication;
     _actionArguments = actionArguments;
 }
Пример #15
0
        public LoginPageViewModel(ISecurityService securityService, IPageDialogService pageDialogService,
                                  INavigationService navigationService, IPhotoService photoService, ILocalAuthenticationService localAuthService) : base(navigationService)
        {
            _photoService      = photoService;
            _securityService   = securityService;
            _pageDialogService = pageDialogService;
            _localAuthService  = localAuthService;

            Title = "Login";
            AddValidations();
        }
Пример #16
0
 public BaseController(
     ILocalAuthenticationService authenticationService,
     IUserService userService,
     IExternalAuthenticationService externalAuthenticationService,
     IActionArguments actionArguments)
 {
     _actionArguments               = actionArguments;
     _authenticationService         = authenticationService;
     _externalAuthenticationService = externalAuthenticationService;
     _userService = userService;
 }
Пример #17
0
 public ProjectsController(ILocalAuthenticationService authenticationService,
                           IUserService userService,
                           IBlogService blogService,
                           IExternalAuthenticationService externalAuthenticationService,
                           IFormsAuthentication formsAuthentication,
                           IActionArguments actionArguments, IProjectService projectService)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
     _blogService    = blogService;
     _projectService = projectService;
 }
Пример #18
0
 public BaseAccountController(ILocalAuthenticationService authenticationService,
                              ICustomerService customerService,
                              IExternalAuthenticationService externalAuthenticationService,
                              IFormsAuthentication formsAuthentication,
                              IActionArguments actionArguements)
 {
     _authenticationService         = authenticationService;
     _customerService               = customerService;
     _externalAuthenticationService = externalAuthenticationService;
     _formsAuthentication           = formsAuthentication;
     _actionArguements              = actionArguements;
 }
 public LoginController(
     ILocalAuthenticationService authenticationService,
     IUserService userService,
     IExternalAuthenticationService externalAuthenticationService,
     IFormsAuthentication formsAuthentication,
     IActionArguments actionArguments)
 {
     _actionArguments               = actionArguments;
     _authenticationService         = authenticationService;
     _formsAuthentications          = formsAuthentication;
     _externalAuthenticationService = externalAuthenticationService;
     _userService = userService;
 }
 public BlogController(ILocalAuthenticationService authenticationService,
                       IUserService userService,
                       IBlogService blogService,
                       ITagService tagService,
                       IBlogCategoryService categoryService,
                       IExternalAuthenticationService externalAuthenticationService,
                       IFormsAuthentication formsAuthentication,
                       IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, formsAuthentication, actionArguments)
 {
     _blogService     = blogService;
     _categoryService = categoryService;
     _tagService      = tagService;
 }
 public IdentityMappingFilter(ILoggerFactory logger, ILocalAuthenticationService authService)
 {
     this.authService = authService;
 }
 public AccountLogOnController(ILocalAuthenticationService authentication_service,
                               IFormsAuthentication forms_authentication)
 {
     _authentication_service = authentication_service;
     _forms_authentication = forms_authentication;
 }
 public AccountLogOnController(ILocalAuthenticationService authentication_service,
                               IFormsAuthentication forms_authentication)
 {
     _authentication_service = authentication_service;
     _forms_authentication   = forms_authentication;
 }
 public WechatController(
     ILocalAuthenticationService authSrv, IBaseRepository <WeiXinShare, string> baseRepository)
 {
     _authSrv        = authSrv;
     _baseRepository = baseRepository;
 }