Exemplo n.º 1
0
 // TODO: test all of these!
 public Broker(ITimeFormattingService timeFormattingService, IForumRepository forumRepo, IHubContext <TopicsHub> topicHubContext, IHubContext <FeedHub> feedHubContext, IHubContext <ForumsHub> forumsHubContext, IHubContext <RecentHub> recentHubContext)
 {
     _timeFormattingService = timeFormattingService;
     _forumRepo             = forumRepo;
     _topicHubContext       = topicHubContext;
     _feedHubContext        = feedHubContext;
     _forumsHubContext      = forumsHubContext;
     _recentHubContext      = recentHubContext;
 }
Exemplo n.º 2
0
 public TimeController(ITimeFormattingService timeFormattingService, IProfileService profileService, IUserRetrievalShim userRetrievalShim)
 {
     _timeFormattingService = timeFormattingService;
     _profileService        = profileService;
     _userRetrievalShim     = userRetrievalShim;
 }
Exemplo n.º 3
0
 // TODO: test all of these!
 public Broker(ITimeFormattingService timeFormattingService, IForumRepository forumRepo, IConnectionManager connectionManager)
 {
     _timeFormattingService = timeFormattingService;
     _forumRepo             = forumRepo;
     _connectionManager     = connectionManager;
 }
Exemplo n.º 4
0
		protected internal TimeController(ITimeFormattingService timeFormattingService, IProfileService profileService)
		{
			_timeFormattingService = timeFormattingService;
			_profileService = profileService;
		}
Exemplo n.º 5
0
 protected internal TimeController(ITimeFormattingService timeFormattingService, IProfileService profileService)
 {
     _timeFormattingService = timeFormattingService;
     _profileService        = profileService;
 }
Exemplo n.º 6
0
		public Broker(ITimeFormattingService timeFormattingService, IForumRepository forumRepo)
		{
			_timeFormattingService = timeFormattingService;
			_forumRepo = forumRepo;
		}
Exemplo n.º 7
0
 public Broker(ITimeFormattingService timeFormattingService, IForumRepository forumRepo)
 {
     _timeFormattingService = timeFormattingService;
     _forumRepo             = forumRepo;
 }