Example #1
0
 public PreguntasController()
 {
     this.grupoPreguntasService = ServiceFactory.BuidGrupoPreguntasService();
     this.preguntasService = ServiceFactory.BuidPreguntasService();
 }
 public PreguntaController(IPreguntaService service)
 {
     this.service = service;
 }
Example #3
0
 public PreguntaController(IPreguntaService services)
 {
     service = services;
 }
Example #4
0
 public PreguntaController()
 {
     //context = new SimuladorContext();
     service = new PreguntaService();
 }
 public preguntaController(testContext context)
 {
     _servicePregunta = new PreguntaService(context);
     _serviceAuth     = new AuthService(context);
 }