public async Task <IActionResult> Post(LoginCandidatoDto login)
 {
     return(Ok(await _service.AutenticarCandidato(login.Login, login.Senha)));
 }