public ObterNotasPorBimestresUeAlunoTurmaQueryHandler(IHttpClientFactory httpClientFactory, INotaAlunoCorRepositorio notaAlunoCorRepositorio)
 {
     this.httpClientFactory   = httpClientFactory ?? throw new ArgumentNullException(nameof(httpClientFactory));
     _notaAlunoCorRepositorio = notaAlunoCorRepositorio ?? throw new System.ArgumentNullException(nameof(notaAlunoCorRepositorio));
 }
Example #2
0
 public ObterNotasAlunoQueryHandler(INotaAlunoRepositorio notaAlunoRepositorio, INotaAlunoCorRepositorio notaAlunoCorRepositorio)
 {
     _notaAlunoRepositorio    = notaAlunoRepositorio ?? throw new System.ArgumentNullException(nameof(notaAlunoRepositorio));
     _notaAlunoCorRepositorio = notaAlunoCorRepositorio ?? throw new System.ArgumentNullException(nameof(notaAlunoCorRepositorio));
 }