public ExaminationAudioService(IFilesConfiguration filesConfiguration, ITransactionService transactionService, IExaminationQuestionsRepository questionsRepository, IExaminationQuestionAudioFilesRepository questionAudioFilesRepository) { this.filesConfiguration = filesConfiguration; this.transactionService = transactionService; this.questionsRepository = questionsRepository; this.questionAudioFilesRepository = questionAudioFilesRepository; }
public LabelingAudioService(IFilesConfiguration filesConfiguration, IWavFileDecodeService wavFileDecodeService, IImportRepository importRepository, IAssignedLabelGroupsRepository assignedLabelGroupsRepository, ILabelingAudioRepository labelingAudioRepository) { this.importRepository = importRepository; this.filesConfiguration = filesConfiguration; this.wavFileDecodeService = wavFileDecodeService; this.assignedLabelGroupsRepository = assignedLabelGroupsRepository; this.labelingAudioRepository = labelingAudioRepository; }