Exemplo n.º 1
0
 public LabelService(IMapper mapper,
                     ITransactionService transactionService,
                     ILabelGroupsRepository labelGroupsRepository,
                     ITranscriptionLabelsRepository labelsRepository,
                     ITranscriptionSelectedLabelRepository transcriptionSelectedLabelRepository)
 {
     this.mapper                = mapper;
     this.labelsRepository      = labelsRepository;
     this.transactionService    = transactionService;
     this.labelGroupsRepository = labelGroupsRepository;
     this.transcriptionSelectedLabelRepository = transcriptionSelectedLabelRepository;
 }
 public TranscriptionController(ITranscriptionService transcriptionService,
                                UserManager <CompanyIdentityUser> userManager,
                                IMapper mapper,
                                ILabelingAudioService labelingAudioService,
                                ILabelService labelService,
                                IImportRepository importsRepository,
                                ITranscriptionRepository transcriptionRepository,
                                ILabelingStatisticsService labelingStatisticsService,
                                ITranscriptionLabelsRepository labelsRepository,
                                ILabelGroupsRepository labelGroupsRepository)
 {
     this.mapper = mapper;
     this.labelGroupsRepository     = labelGroupsRepository;
     this.labelsRepository          = labelsRepository;
     this.importsRepository         = importsRepository;
     this.transcriptionRepository   = transcriptionRepository;
     this.labelingStatisticsService = labelingStatisticsService;
     this.labelingAudioService      = labelingAudioService;
     this.transcriptionService      = transcriptionService;
     this.labelService = labelService;
     this.userManager  = userManager;
 }