예제 #1
0
 public DocumentController(IDocumentRepository documentRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IAuthorizationService authorizationService)
 {
     _documentRepository     = documentRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _authorizationService   = authorizationService;
 }
 public EvaluationController(IEvaluationRepository evaluationRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper)
 {
     _evaluationRepository   = evaluationRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _mapper = mapper;
 }
예제 #3
0
 public PhaseController(IPhaseRepository phaseRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper)
 {
     _phaseRepository        = phaseRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _mapper = mapper;
 }
예제 #4
0
 public MesureController(IMesureRepository mesureRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper)
 {
     _mesureRepository       = mesureRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _mapper = mapper;
 }
예제 #5
0
 public TacheController(ITacheRepository tacheRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, INotificationRepository notificationRepository, IMapper mapper)
 {
     _tacheRepository        = tacheRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _notificationRepository = notificationRepository;
     _mapper = mapper;
 }
예제 #6
0
 public ActionController(IActionRepository actionRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper, IAuthorizationService authorizationService)
 {
     _actionRepository       = actionRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _mapper = mapper;
     _authorizationService = authorizationService;
 }
        public ReunionController(IReunionRepository reunionRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, INotificationRepository notificationRepository, IMapper mapper)
        {
            _reunionRepository      = reunionRepository;
            _projetRepository       = projetRepository;
            _autorisationRepository = autorisationRepository;
            _notificationRepository = notificationRepository;

            _mapper = mapper;
        }
예제 #8
0
        public ProjetController(IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, INotificationRepository notificationRepository, IMapper mapper, IAuthorizationService authorizationService)
        {
            _projetRepository       = projetRepository;
            _autorisationRepository = autorisationRepository;
            _notificationRepository = notificationRepository;
            _authorizationService   = authorizationService;

            _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;
 }
예제 #10
0
 public ObjectifController(IObjectifRepository objectifRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository)
 {
     _objectifRepository     = objectifRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
 }
예제 #11
0
 public RisqueController(IRisqueRepository risqueRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository)
 {
     _risqueRepository       = risqueRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
 }
예제 #12
0
 public OpportuniteController(IOpportuniteRepository opportuniteRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository)
 {
     _opportuniteRepository  = opportuniteRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
 }
예제 #13
0
 public ParametreController(IParametreRepository parametreRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository)
 {
     _parametreRepository    = parametreRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
 }
 public IndicateurController(IIndicateurRepository indicateurRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository)
 {
     _indicateurRepository   = indicateurRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
 }