public ClusterImportService(
     INotificationClusterRepository notificationClusterRepository,
     INotificationRepository notificationRepository)
 {
     _notificationClusterRepository = notificationClusterRepository;
     _notificationRepository        = notificationRepository;
 }
Пример #2
0
 public NotificationClusterUpdateJob(
     INotificationClusterRepository notificationClusterRepository,
     INotificationService notificationService,
     NtbsContext ntbsContext) : base(ntbsContext)
 {
     _notificationClusterRepository = notificationClusterRepository;
     _notificationService           = notificationService;
 }