public FeaturesController(ILocalAuthenticationService authenticationService, IUserService userService, IExternalAuthenticationService externalAuthenticationService, IFormsAuthentication formsAuthentication, IActionArguments actionArguments) : base(authenticationService, userService, externalAuthenticationService, actionArguments) { }
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) { }
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; }
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; }
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; }
public BaseController( ILocalAuthenticationService authenticationService, IUserService userService, IExternalAuthenticationService externalAuthenticationService, IActionArguments actionArguments) { _actionArguments = actionArguments; _authenticationService = authenticationService; _externalAuthenticationService = externalAuthenticationService; _userService = userService; }
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; }