public NotificationBoxController(
     INotificationService notificationService,
     IHubContext <NotificationHub> hubContext,
     IConnectionManagerService connectionManagerService)
 {
     _notificationHub          = hubContext;
     _notificationService      = notificationService;
     _connectionManagerService = connectionManagerService;
 }
Beispiel #2
0
 public NotificationHub(IConnectionManagerService connectionManagerService)
 {
     _connectionManagerService = connectionManagerService;
 }