Commit 971a2f4f by Nelson Ruiz

primer estilo por NR

parent b4fafd3a
......@@ -33,8 +33,7 @@ public class PostulanteController {
@PostMapping(value = "/postulante",consumes = "application/json")
public String guardarPostulante(@RequestBody Postulante postulante){
System.out.println(postulante.getExperiencias().get(0).getCargo());
post.save(postulante);
return "redirect:/";
}
......
......@@ -42,12 +42,6 @@ public class Experiencia {
public void setInstitucion(String institucion) {
this.institucion = institucion;
}
public Date getFechaDesde() {
return fechaDesde;
}
public void setFechaDesde(Date fechaDesde) {
this.fechaDesde = fechaDesde;
}
public void setFechaDesde(String fechaDesde) {
if(fechaDesde==null || fechaDesde.isEmpty()) return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment