Esempio n. 1
0
 public UsuarioController(UsuarioService usuarioService, ReCaptchaService reCaptchaService, VagasService vagasService)
 {
     _usuarioService = usuarioService;
     _reCaptchaService = reCaptchaService;
     _vagasService = vagasService;
 }
Esempio n. 2
0
 public VagasController(VagasService vagasService, ReCaptchaService reCaptchaService)
 {
     _vagasService = vagasService;
     _reCaptchaService = reCaptchaService;
 }
Esempio n. 3
0
 public AccountController(AccountService accountService, ReCaptchaService reCaptchaService)
 {
     _accountService = accountService;
     _reCaptchaService = reCaptchaService;
 }