Beispiel #1
0
 public NotificationManager(
     INotificationConnectionManager connectionManager,
     IFilterService filterService
     )
 {
     _connectionManager = connectionManager;
     _filterService     = filterService;
 }
 /// <summary>
 /// NotificationController
 /// </summary>
 /// <param name="conversationAppService"></param>
 /// <param name="messageAppService"></param>
 /// <param name="notificationConnectionManager"></param>
 public NotificationController(
     IConversationAppService conversationAppService,
     IConversationMessageAppService messageAppService,
     INotificationConnectionManager notificationConnectionManager
     )
 {
     _conversationAppService        = conversationAppService;
     _messageAppService             = messageAppService;
     _notificationConnectionManager = notificationConnectionManager;
 }
Beispiel #3
0
 public BaseWebSocketHandler(INotificationConnectionManager webSocketConnectionManager)
 {
     WebSocketConnectionManager = webSocketConnectionManager;
 }
 public UserNotificationHandler(INotificationConnectionManager webSocketConnectionManager) : base(webSocketConnectionManager)
 {
 }