public SoundDataProcessingService(
     IRecognizedSoundLogRepository soundLogRepository,
     IPushNotificationService pushNotificationService,
     ISoundRecognitionService soundRecognitionService,
     ISoundLabelRepository soundLabelRepository,
     ISensorRepository sensorRepository
     )
 {
     _pushNotificationService = pushNotificationService;
     _soundRecognitionService = soundRecognitionService;
     _soundLabelRepository    = soundLabelRepository;
     _soundLogRepository      = soundLogRepository;
     _sensorRepository        = sensorRepository;
 }
Пример #2
0
 public SoundLogService(IRecognizedSoundLogRepository soundLogRepository)
 {
     _soundLogRepository = soundLogRepository;
 }