public SpeechDisordersDetector( IAudioService audioService, IFileWorkerService fileWorkerService, IFeatureExtractorService featureExtractorService, INeuralNetworkService neuralNetworkService, IBaseWorker baseWorker) { _audioService = audioService; _fileWorkerService = fileWorkerService; _featureExtractorService = featureExtractorService; _neuralNetworkService = neuralNetworkService; _baseWorker = baseWorker; InitializeComponent(); }
public LogService(IFileWorkerService fileService, ILoggingSettings settings) { modFileWorkerService = fileService; modLoggingSettings = settings; }
public FeatureExtractorService(IFileWorkerService fileWorkerService, IAudioService audioSevice) { _fileWorkerService = fileWorkerService; _audioService = audioSevice; }
public AudioService(IFileWorkerService fileWorkerService) { _fileWorkerService = fileWorkerService; }
public BaseWorker(IFeatureExtractorService featureExtractorService, IFileWorkerService fileWorkerService) { _fileWorkerService = fileWorkerService; _featureExtractorService = featureExtractorService; }