public TacheController(ITacheRepository tacheRepository, IProjetRepository projetRepository, IAutorisationRepository autorisationRepository, INotificationRepository notificationRepository, IMapper mapper)
 {
     _tacheRepository        = tacheRepository;
     _projetRepository       = projetRepository;
     _autorisationRepository = autorisationRepository;
     _notificationRepository = notificationRepository;
     _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;
 }
Example #3
0
 public TacheController(VehiculeContext context, ITacheService tacheService, ITacheRepository tacheRepository)
 {
     _context              = context;
     this.tacheService     = tacheService;
     this._tacheRepository = tacheRepository;
 }
Example #4
0
 public TacheService(ITacheRepository tacheRepository)
 {
     this.tacheRepository = tacheRepository;
 }
 public TodoController()
 {
     _service = new TacheService();
 }
Example #6
0
 public TacheService()
 {
     _repo = new TacheRepository();
 }