public ObterComponentesCurricularesRegenciaPorAnoETurnoQueryHandler(IRepositorioComponenteCurricular repositorioComponenteCurricular)
 {
     this.repositorioComponenteCurricular = repositorioComponenteCurricular ?? throw new ArgumentNullException(nameof(repositorioComponenteCurricular));
 }
 public ObterComponentesCurricularesPorIdsQueryHandler(IRepositorioComponenteCurricular repositorioComponenteCurricular, IServicoEol servicoEol)
 {
     this.repositorioComponenteCurricular = repositorioComponenteCurricular ?? throw new System.ArgumentNullException(nameof(repositorioComponenteCurricular));
     this.servicoEol = servicoEol ?? throw new System.ArgumentNullException(nameof(servicoEol));
 }