Ejemplo n.º 1
0
 public VagasController(VagasService vagasService, ReCaptchaService reCaptchaService)
 {
     _vagasService = vagasService;
     _reCaptchaService = reCaptchaService;
 }
Ejemplo n.º 2
0
 public UsuarioController(UsuarioService usuarioService, ReCaptchaService reCaptchaService, VagasService vagasService)
 {
     _usuarioService = usuarioService;
     _reCaptchaService = reCaptchaService;
     _vagasService = vagasService;
 }