Ejemplo n.º 1
0
 public ObterNotasAlunoBimestreQueryHandler(IFechamentoNotaRepository fechamentoNotaRepository,
                                            IConselhoClasseNotaRepository conselhoClasseNotaRepository)
 {
     this.fechamentoNotaRepository     = fechamentoNotaRepository ?? throw new ArgumentNullException(nameof(fechamentoNotaRepository));
     this.conselhoClasseNotaRepository = conselhoClasseNotaRepository ?? throw new ArgumentNullException(nameof(conselhoClasseNotaRepository));
 }
 public ObterHistoricoNotasConselhoClassePorTurmaIdQueryHandler(IConselhoClasseNotaRepository conselhoClasseNotaRepository)
 {
     this.conselhoClasseNotaRepository = conselhoClasseNotaRepository ?? throw new ArgumentNullException(nameof(conselhoClasseNotaRepository));
 }
 public ObterNotasFinaisRelatorioNotasConceitosFinaisQueryHandler(IConselhoClasseNotaRepository conselhoClasseNotaRepository)
 {
     this.conselhoClasseNotaRepository = conselhoClasseNotaRepository ?? throw new ArgumentNullException(nameof(conselhoClasseNotaRepository));
 }
Ejemplo n.º 4
0
 public ObterNotasFinaisPorTurmaQueryHandler(IConselhoClasseNotaRepository conselhoClasseNotaRepository)
 {
     this.conselhoClasseNotaRepository = conselhoClasseNotaRepository ?? throw new ArgumentNullException(nameof(conselhoClasseNotaRepository));
 }