public MesureController(IMesureRepository mesureRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper)
 {
     _mesureRepository       = mesureRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _mapper = mapper;
 }
 public UpdateAuthorizationHandler(IActionRepository actionRepository, IDocumentRepository documentRepository,
                                   IEvaluationRepository evaluationRepository, IIndicateurRepository indicateurRepository,
                                   IMesureRepository mesureRepository, IObjectifRepository objectifRepository,
                                   IOpportuniteRepository opportuniteRepository, IPhaseRepository phaseRepository,
                                   IProjetRepository projetRepository, IReunionRepository reunionRepository,
                                   IRisqueRepository risqueRepository, ITacheRepository tacheRepository)
 {
     _actionRepository      = actionRepository;
     _documentRepository    = documentRepository;
     _evaluationRepository  = evaluationRepository;
     _indicateurRepository  = indicateurRepository;
     _mesureRepository      = mesureRepository;
     _objectifRepository    = objectifRepository;
     _opportuniteRepository = opportuniteRepository;
     _phaseRepository       = phaseRepository;
     _projetRepository      = projetRepository;
     _reunionRepository     = reunionRepository;
     _risqueRepository      = risqueRepository;
     _tacheRepository       = tacheRepository;
 }