public ComandosRecuperacaoParalela(IRepositorioRecuperacaoParalela repositorioRecuperacaoParalela,
                                    IRepositorioRecuperacaoParalelaPeriodoObjetivoResposta repositorioRecuperacaoParalelaPeriodoObjetivo,
                                    IConsultaRecuperacaoParalela consultaRecuperacaoParalela,
                                    IUnitOfWork unitOfWork)
 {
     this.repositorioRecuperacaoParalela = repositorioRecuperacaoParalela ?? throw new ArgumentNullException(nameof(repositorioRecuperacaoParalela));
     this.repositorioRecuperacaoParalelaPeriodoObjetivoResposta = repositorioRecuperacaoParalelaPeriodoObjetivo ?? throw new ArgumentNullException(nameof(repositorioRecuperacaoParalelaPeriodoObjetivo));
     this.consultaRecuperacaoParalela = consultaRecuperacaoParalela ?? throw new ArgumentNullException(nameof(consultaRecuperacaoParalela));
     this.unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
 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));
 }
 public ComandosRecuperacaoParalela(IRepositorioRecuperacaoParalela repositorioRecuperacaoParalela,
                                    IRepositorioRecuperacaoParalelaPeriodoObjetivoResposta repositorioRecuperacaoParalelaPeriodoObjetivo,
                                    IConsultaRecuperacaoParalela consultaRecuperacaoParalela,
                                    IUnitOfWork unitOfWork,
                                    IServicoUsuario servicoUsuario,
                                    IServicoEol servicoEOL,
                                    IMediator mediator
                                    )
 {
     this.repositorioRecuperacaoParalela = repositorioRecuperacaoParalela ?? throw new ArgumentNullException(nameof(repositorioRecuperacaoParalela));
     this.repositorioRecuperacaoParalelaPeriodoObjetivoResposta = repositorioRecuperacaoParalelaPeriodoObjetivo ?? throw new ArgumentNullException(nameof(repositorioRecuperacaoParalelaPeriodoObjetivo));
     this.consultaRecuperacaoParalela = consultaRecuperacaoParalela ?? throw new ArgumentNullException(nameof(consultaRecuperacaoParalela));
     this.unitOfWork     = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
     this.servicoUsuario = servicoUsuario ?? throw new ArgumentNullException(nameof(servicoUsuario));
     this.servicoEOL     = servicoEOL ?? throw new ArgumentNullException(nameof(servicoEOL));
     this.mediator       = mediator ?? throw new ArgumentNullException(nameof(mediator));
 }