public ObterHistoricoNotasFechamentoPorTurmaIdQueryHandler(IFechamentoNotaRepository fechamentoNotaRepository)
 {
     this.fechamentoNotaRepository = fechamentoNotaRepository ?? throw new ArgumentNullException(nameof(fechamentoNotaRepository));
 }
示例#2
0
 public ObterNotasAlunoBimestreQueryHandler(IFechamentoNotaRepository fechamentoNotaRepository,
                                            IConselhoClasseNotaRepository conselhoClasseNotaRepository)
 {
     this.fechamentoNotaRepository     = fechamentoNotaRepository ?? throw new ArgumentNullException(nameof(fechamentoNotaRepository));
     this.conselhoClasseNotaRepository = conselhoClasseNotaRepository ?? throw new ArgumentNullException(nameof(conselhoClasseNotaRepository));
 }