Example #1
0
 public EstatisticaController(IUsuarioService usuarioService, IUsuarioHasPerguntaService hasPerguntaService, IPerguntaService perguntaService, ITematicaService tematicaService)
 {
     _usuarioService     = usuarioService;
     _hasPerguntaService = hasPerguntaService;
     _perguntaService    = perguntaService;
     _tematicaService    = tematicaService;
 }
 public UsuarioHasPerguntaController(IUsuarioHasPerguntaService service)
 {
     _service = service;
 }
 public JogadoresController(IUsuarioService usuarioService, IUsuarioHasPerguntaService hasPerguntaService, IPerguntaService perguntaService)
 {
     _usuarioService     = usuarioService;
     _hasPerguntaService = hasPerguntaService;
     _perguntaService    = perguntaService;
 }