public ConsultasRecuperacaoParalela(
     IRepositorioRecuperacaoParalela repositorioRecuperacaoParalela,
     IRepositorioEixo repositorioEixo,
     IRepositorioObjetivo repositorioObjetivo,
     IRepositorioResposta repositorioResposta,
     IServicoEOL servicoEOL,
     IServicoRecuperacaoParalela servicoRecuperacaoParalela,
     IContextoAplicacao contextoAplicacao) : base(contextoAplicacao)
 {
     this.repositorioRecuperacaoParalela = repositorioRecuperacaoParalela ?? throw new ArgumentNullException(nameof(repositorioRecuperacaoParalela));
     this.repositorioEixo            = repositorioEixo ?? throw new ArgumentNullException(nameof(repositorioEixo));
     this.repositorioObjetivo        = repositorioObjetivo ?? throw new ArgumentNullException(nameof(repositorioObjetivo));
     this.repositorioResposta        = repositorioResposta ?? throw new ArgumentNullException(nameof(repositorioResposta));
     this.servicoRecuperacaoParalela = servicoRecuperacaoParalela ?? throw new ArgumentNullException(nameof(servicoRecuperacaoParalela));
     this.servicoEOL = servicoEOL ?? throw new ArgumentNullException(nameof(servicoEOL));
 }
Exemple #2
0
 public QuestionarioController(IRepositorioPergunta repoPerguntas, IRepositorioResposta repoRespostas)
 {
     _repositorioPerguntas = repoPerguntas;
     _repositorioRespostas = repoRespostas;
 }