public ForumConfigurationService(IEmailConfigurationService emailConfigurationService, IForumUrlService forumUrlService, IOptions <ForumOptions> options, IStringService stringService, IWebHelperService webHelperService)
 {
     _emailConfigurationService = emailConfigurationService;
     _forumUrlService           = forumUrlService;
     _options          = options;
     _stringService    = stringService;
     _webHelperService = webHelperService;
 }
Esempio n. 2
0
 public ForumFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IDataAnnotationsService dataAnnotationsService, IFormHelperService formHelperService, IForumService forumService, IForumUrlService forumUrlService, IPageService pageService)
 {
     _authenticationService  = authenticationService;
     _authorizationService   = authorizationService;
     _dataAnnotationsService = dataAnnotationsService;
     _formHelperService      = formHelperService;
     _forumService           = forumService;
     _forumUrlService        = forumUrlService;
     _pageService            = pageService;
 }