public PhaseController(IPhaseRepository phaseRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper) { _phaseRepository = phaseRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; _mapper = mapper; }
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; }
public MesureController(IMesureRepository mesureRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, IMapper mapper) { _mesureRepository = mesureRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; _mapper = mapper; }
public TacheController(ITacheRepository tacheRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, INotificationRepository notificationRepository, IMapper mapper) { _tacheRepository = tacheRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; _notificationRepository = notificationRepository; _mapper = mapper; }
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; }
public ProjetController(IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, INotificationRepository notificationRepository, IMapper mapper, IAuthorizationService authorizationService) { _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; _notificationRepository = notificationRepository; _authorizationService = authorizationService; _mapper = mapper; }
public ObjectifController(IObjectifRepository objectifRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository) { _objectifRepository = objectifRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; }
public RisqueController(IRisqueRepository risqueRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository) { _risqueRepository = risqueRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; }
public OpportuniteController(IOpportuniteRepository opportuniteRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository) { _opportuniteRepository = opportuniteRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; }
public AutorisationController(IAutorisationRepository autorisationRepository) { _autorisationRepository = autorisationRepository; }
public ParametreController(IParametreRepository parametreRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository) { _parametreRepository = parametreRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; }
public RefFilter(string _ref, IAutorisationRepository autorisationRepository) { Ref = _ref; _autorisationRepository = autorisationRepository; }
public IndicateurController(IIndicateurRepository indicateurRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository) { _indicateurRepository = indicateurRepository; _projetRepository = projetRepository; _autorisationRepository = autorisationRepository; }