예제 #1
0
 public FeaturesController(ILocalAuthenticationService authenticationService,
                           IUserService userService,
                           IExternalAuthenticationService externalAuthenticationService,
                           IFormsAuthentication formsAuthentication,
                           IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
 }
예제 #2
0
 public BannersController(ILocalAuthenticationService authenticationService,
                          IUserService userService,
                          IBannerService bannerService,
                          IExternalAuthenticationService externalAuthenticationService,
                          IFormsAuthentication formsAuthentication,
                          IActionArguments actionArguments)
 {
     _bannerService = bannerService;
 }
 public AccountRegisterController(ILocalAuthenticationService authenticationService,
                                  ICustomerService customerService,
                                  IExternalAuthenticationService externalAuthenticationService,
                                  IFormsAuthentication formsAuthentication,
                                  IActionArguments actionArguements)
     : base(authenticationService, customerService, externalAuthenticationService,
           formsAuthentication, actionArguements)
 {            
 }
예제 #4
0
 public AccountRegisterController(ILocalAuthenticationService authenticationService,
                                  ICustomerService customerService,
                                  ICookieAuthentication cookieAuthentication,
                                  IActionArguments actionArguments) : base(authenticationService,
                                                                           customerService,
                                                                           cookieAuthentication,
                                                                           actionArguments)
 {
 }
 public AccountLogOnController(ILocalAuthenticationService authenticationService,
                               ICustomerService customerService,
                               IExternalAuthenticationService externalAuthenticationService,
                               IFormsAuthentication formsAuthentication,
                               IActionArguments actionArguements)
     : base(authenticationService, customerService, externalAuthenticationService,
            formsAuthentication, actionArguements)
 {
 }
 public SubscriberController(ILocalAuthenticationService authenticationService,
                             IUserService userService,
                             ISubscriberService subscriberService,
                             IExternalAuthenticationService externalAuthenticationService,
                             IFormsAuthentication formsAuthentication,
                             IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
     _subscriberService = subscriberService;
 }
 public ContactController(ILocalAuthenticationService authenticationService,
                          IUserService userService,
                          IBlogService blogService,
                          IExternalAuthenticationService externalAuthenticationService,
                          IFormsAuthentication formsAuthentication,
                          IActionArguments actionArguments)
     : base(authenticationService, userService, externalAuthenticationService, actionArguments)
 {
     _blogService = blogService;
 }
예제 #8
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 BaseAccountController(ILocalAuthenticationService authenticationService, ICustomerService customerService, IExternalAuthenticationService externalAuthenticationService,
 IFormsAuthentication formsAuthentication,
 IActionArguments actionArguments)
 {
     _authenticationService = authenticationService;
     _customerService = customerService;
     _externalAuthenticationService = externalAuthenticationService;
     _formsAuthentication = formsAuthentication;
     _actionArguments = actionArguments;
 }
예제 #11
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;
 }
예제 #12
0
 public BaseController(
     ILocalAuthenticationService authenticationService,
     IUserService userService,
     IExternalAuthenticationService externalAuthenticationService,
     IActionArguments actionArguments)
 {
     _actionArguments               = actionArguments;
     _authenticationService         = authenticationService;
     _externalAuthenticationService = externalAuthenticationService;
     _userService = userService;
 }
예제 #13
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;
 }