Commit 971a2f4f by Nelson Ruiz

primer estilo por NR

parent b4fafd3a
...@@ -33,8 +33,7 @@ public class PostulanteController { ...@@ -33,8 +33,7 @@ public class PostulanteController {
@PostMapping(value = "/postulante",consumes = "application/json") @PostMapping(value = "/postulante",consumes = "application/json")
public String guardarPostulante(@RequestBody Postulante postulante){ public String guardarPostulante(@RequestBody Postulante postulante){
System.out.println(postulante.getExperiencias().get(0).getCargo()); post.save(postulante);
return "redirect:/"; return "redirect:/";
} }
......
...@@ -42,12 +42,6 @@ public class Experiencia { ...@@ -42,12 +42,6 @@ public class Experiencia {
public void setInstitucion(String institucion) { public void setInstitucion(String institucion) {
this.institucion = institucion; this.institucion = institucion;
} }
public Date getFechaDesde() {
return fechaDesde;
}
public void setFechaDesde(Date fechaDesde) {
this.fechaDesde = fechaDesde;
}
public void setFechaDesde(String fechaDesde) { public void setFechaDesde(String fechaDesde) {
if(fechaDesde==null || fechaDesde.isEmpty()) return; 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