Exemple #1
0
 protected internal ForumController(ISettingsManager settingsManager, IForumService forumService, ITopicService topicService, IPostService postService, ITopicViewCountService topicViewCountService, ISubscribedTopicsService subService, ILastReadService lastReadService, IFavoriteTopicService favoriteTopicService, IProfileService profileService, IMobileDetectionWrapper mobileDetectionWrapper)
 {
     _settingsManager        = settingsManager;
     _forumService           = forumService;
     _topicService           = topicService;
     _postService            = postService;
     _topicViewCountService  = topicViewCountService;
     _subService             = subService;
     _lastReadService        = lastReadService;
     _favoriteTopicService   = favoriteTopicService;
     _profileService         = profileService;
     _mobileDetectionWrapper = mobileDetectionWrapper;
 }
		protected internal ForumController(ISettingsManager settingsManager, IForumService forumService, ITopicService topicService, IPostService postService, ITopicViewCountService topicViewCountService, ISubscribedTopicsService subService, ILastReadService lastReadService, IFavoriteTopicService favoriteTopicService, IProfileService profileService, IMobileDetectionWrapper mobileDetectionWrapper)
		{
			_settingsManager = settingsManager;
			_forumService = forumService;
			_topicService = topicService;
			_postService = postService;
			_topicViewCountService = topicViewCountService;
			_subService = subService;
			_lastReadService = lastReadService;
			_favoriteTopicService = favoriteTopicService;
			_profileService = profileService;
			_mobileDetectionWrapper = mobileDetectionWrapper;
		}
 public ForumController(ISettingsManager settingsManager, IForumService forumService, ITopicService topicService, IPostService postService, ITopicViewCountService topicViewCountService, ISubscribedTopicsService subService, ILastReadService lastReadService, IFavoriteTopicService favoriteTopicService, IProfileService profileService, IMobileDetectionWrapper mobileDetectionWrapper, IUserRetrievalShim userRetrievalShim)
 {
     _settingsManager        = settingsManager;
     _forumService           = forumService;
     _topicService           = topicService;
     _postService            = postService;
     _topicViewCountService  = topicViewCountService;
     _subService             = subService;
     _lastReadService        = lastReadService;
     _favoriteTopicService   = favoriteTopicService;
     _profileService         = profileService;
     _mobileDetectionWrapper = mobileDetectionWrapper;
     _userRetrievalShim      = userRetrievalShim;
 }