Exemple #1
0
 public LimparTabelasGsaCommandHandler(IRepositorioUsuarioGsa repositorioUsuarioGsa,
                                       IRepositorioCursoGsa repositorioCursoGsa,
                                       IRepositorioUsuarioCursoGsa repositorioUsuarioCursoGsa)
 {
     this.repositorioUsuarioGsa      = repositorioUsuarioGsa;
     this.repositorioCursoGsa        = repositorioCursoGsa;
     this.repositorioUsuarioCursoGsa = repositorioUsuarioCursoGsa;
 }
 public ValidarUsuariosExistentesCursosGsaCommandHandler(IRepositorioUsuarioGsa repositorioUsuarioComparativo)
 {
     this.repositorioUsuarioComparativo = repositorioUsuarioComparativo ?? throw new System.ArgumentNullException(nameof(repositorioUsuarioComparativo));
 }
Exemple #3
0
 public ObterUsuariosGsaPaginadosQueryHandler(IRepositorioUsuarioGsa repositorioUsuarioComparativo)
 {
     this.repositorioUsuarioComparativo = repositorioUsuarioComparativo ?? throw new System.ArgumentNullException(nameof(repositorioUsuarioComparativo));
 }
Exemple #4
0
 public ObterUsuariosPorCodigosQueryHandler(IRepositorioUsuarioGsa repositorioUsuario)
 {
     this.repositorioUsuarioGsa = repositorioUsuario ?? throw new ArgumentNullException(nameof(repositorioUsuario));
 }
Exemple #5
0
 public ExisteUsuarioGsaPorIdQueryHandler(IRepositorioUsuarioGsa repositorioUsuarioGsa)
 {
     this.repositorioUsuarioGsa = repositorioUsuarioGsa;
 }
Exemple #6
0
 public IncluirUsuarioGsaCommandHandler(IRepositorioUsuarioGsa repositorio)
 {
     this.repositorio = repositorio ?? throw new ArgumentNullException(nameof(repositorio));
 }