public CurrentUserNotificationHandler(
     IIdentityService identityService,
     IClientHubService broadcastHubService,
     ILoggingContextService loggingContextService)
 {
     fIdentityService       = identityService;
     fBrodacastHubService   = broadcastHubService;
     fLoggingContextService = loggingContextService;
 }
Example #2
0
 public UserNotificationHandler(
     IClientHubService clientHubService,
     IUserRepository userRepository,
     ILoggingContextService loggingContextService)
 {
     fClientHubService      = clientHubService;
     fUserRepository        = userRepository;
     fLoggingContextService = loggingContextService;
 }