Exemple #1
0
 public EstatisticaController(IUsuarioService usuarioService, IUsuarioHasPerguntaService hasPerguntaService, IPerguntaService perguntaService, ITematicaService tematicaService)
 {
     _usuarioService     = usuarioService;
     _hasPerguntaService = hasPerguntaService;
     _perguntaService    = perguntaService;
     _tematicaService    = tematicaService;
 }
Exemple #2
0
 public ProfessorController(IQuizzService service,
                            UserManager <Usuario> user, IPerguntaService perguntaService,
                            IAlunoService alunoService, IRespostaService respostaService)
 {
     _userManager      = user;
     _service          = service;
     _respostaService  = respostaService;
     _estudanteService = alunoService;
     _PerguntaService  = perguntaService;
 }
Exemple #3
0
 public AlunoController(
     IQuizzService service,
     IAlunoService alunoService,
     IRespostaService respostaService,
     IPerguntaService perguntaService,
     IViewRenderService viewRender,
     IPdfGeneratorService pdfGenerator,
     UserManager <Usuario> userManager)
 {
     _serviceQuizz      = service;
     _alunoService      = alunoService;
     _respostaService   = respostaService;
     _perguntaService   = perguntaService;
     _userManager       = userManager;
     _pdfService        = pdfGenerator;
     _viewRenderService = viewRender;
 }
Exemple #4
0
 public PerguntaAppService(IPerguntaService perguntaService)
     : base(perguntaService)
 {
     _perguntaService = perguntaService;
 }
 public TemaController(ITematicaService service, IPerguntaService serviceP)
 {
     _service  = service;
     _serviceP = serviceP;
 }
 public JogadoresController(IUsuarioService usuarioService, IUsuarioHasPerguntaService hasPerguntaService, IPerguntaService perguntaService)
 {
     _usuarioService     = usuarioService;
     _hasPerguntaService = hasPerguntaService;
     _perguntaService    = perguntaService;
 }
Exemple #7
0
 public PerguntaController(IPerguntaService service, INivelService nivelService, IQuizzService quizzService)
 {
     this._perguntaService = service;
     this._nivelService    = nivelService;
     this._quizzService    = quizzService;
 }
 public PerguntaController(IPerguntaService service)
 {
     _service = service;
 }
 public PerguntaServiceWEB(IPerguntaService service)
 {
     this._service = service;
 }
Exemple #10
0
 public PerguntasController(IPerguntaService perguntaService, IMapper mapper, IUserService user)
 {
     _perguntaService = perguntaService;
     _mapper          = mapper;
     _user            = user;
 }