示例#1
0
 public NotificationsMessageService(ConnectionsHub hub, NotificationsDataUnitOfWork db, NotificationManager notificationManager, ILogger <NotificationsMessageService> logger, MediaConverter mediaConverter)
 {
     Db  = db;
     Hub = hub;
     NotificationManager = notificationManager;
     Logger         = logger;
     MediaConverter = mediaConverter;
 }
 public WebSocketsController(NotificationsDataUnitOfWork db, NotificationManager notificationManager, ILogger <NotificationManager> logger)
 {
     _db = db;
     _notificationManager = notificationManager;
     _logger = logger;
 }