public IActionResult RegisterCandidato([FromBody] Candidato candidato)
 {
     try
     {
         return(Created("candidatos", _candidatoService.CreateCandidato(candidato)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }