Example #1
0
 public ObterPendenciaRegistroIndividualCodigosAlunosPorPendenciaQueryHandler(IRepositorioPendenciaRegistroIndividual repositorioPendenciaRegistroIndividual,
                                                                              IRepositorioTurma repositorioTurma, IMediator mediator)
 {
     this.repositorioPendenciaRegistroIndividual = repositorioPendenciaRegistroIndividual;
     this.repositorioTurma = repositorioTurma;
     this.mediator         = mediator;
 }
 public AtualizarPendenciaRegistroIndividualCommandHandler(IRepositorioPendenciaRegistroIndividual repositorioPendenciaRegistroIndividual,
                                                           IRepositorioPendenciaRegistroIndividualAluno repositorioPendenciaRegistroIndividualAluno, IRepositorioPendencia repositorioPendencia,
                                                           IMediator mediator, IUnitOfWork unitOfWork)
 {
     this.repositorioPendenciaRegistroIndividual      = repositorioPendenciaRegistroIndividual;
     this.repositorioPendenciaRegistroIndividualAluno = repositorioPendenciaRegistroIndividualAluno;
     this.repositorioPendencia = repositorioPendencia;
     this.mediator             = mediator;
     this.unitOfWork           = unitOfWork;
 }
Example #3
0
 public GerarPendenciaAusenciaRegistroIndividualTurmaCommandHandler(IRepositorioPendencia repositorioPendencia, IRepositorioPendenciaUsuario repositorioPendenciaUsuario,
                                                                    IRepositorioPendenciaRegistroIndividual repositorioPendenciaRegistroIndividual, IRepositorioPendenciaRegistroIndividualAluno repositorioPendenciaRegistroIndividualAluno,
                                                                    IMediator mediator, IUnitOfWork unitOfWork)
 {
     this.repositorioPendencia                        = repositorioPendencia ?? throw new ArgumentNullException(nameof(repositorioPendencia));
     this.repositorioPendenciaUsuario                 = repositorioPendenciaUsuario ?? throw new ArgumentNullException(nameof(repositorioPendenciaUsuario));
     this.repositorioPendenciaRegistroIndividual      = repositorioPendenciaRegistroIndividual ?? throw new ArgumentNullException(nameof(repositorioPendenciaRegistroIndividual));
     this.repositorioPendenciaRegistroIndividualAluno = repositorioPendenciaRegistroIndividualAluno ?? throw new ArgumentNullException(nameof(repositorioPendenciaRegistroIndividualAluno));
     this.mediator   = mediator ?? throw new ArgumentNullException(nameof(mediator));
     this.unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
Example #4
0
 public ListarAlunosCodigosPorTurmaComponenteComPendenciaQueryHandler(IRepositorioPendenciaRegistroIndividual repositorioPendenciaRegistroIndividual)
 {
     this.repositorioPendenciaRegistroIndividual = repositorioPendenciaRegistroIndividual ?? throw new ArgumentNullException(nameof(repositorioPendenciaRegistroIndividual));
 }