Ejemplo n.º 1
0
 public FCMomentsController(IFCMomentsService fcMomentsService,
                            UserManager <CompanyIdentityUser> userManager,
                            IFCMomentsRepository fcMomentsRepository,
                            ILabelingAudioService labelingAudioService)
 {
     this.userManager          = userManager;
     this.fcMomentsService     = fcMomentsService;
     this.labelingAudioService = labelingAudioService;
     this.fcMomentsRepository  = fcMomentsRepository;
 }
Ejemplo n.º 2
0
 public FCMomentsService(IMapper mapper,
                         ITransactionService transactionService,
                         IUsersRepository usersRepository,
                         ILabelingModuleConfiguration labelingModuleConfiguration,
                         IWorkingPeriodsService workingPeriodsService,
                         IFCMomentsRepository fcMomentsRepository,
                         IAudioReopenSubscriptionService audioReopenSubscriptionService,
                         ILabelingAudioService labelingAudioService,
                         IFCMomentAMLogRepository fcMomentAMLogRepository)
 {
     this.mapper                         = mapper;
     this.usersRepository                = usersRepository;
     this.transactionService             = transactionService;
     this.workingPeriodsService          = workingPeriodsService;
     this.labelingModuleConfiguration    = labelingModuleConfiguration;
     this.audioReopenSubscriptionService = audioReopenSubscriptionService;
     this.fcMomentsRepository            = fcMomentsRepository;
     this.labelingAudioService           = labelingAudioService;
     this.fcMomentAMLogRepository        = fcMomentAMLogRepository;
 }