package med.voll.api.controller;
import med.voll.api.dto.PacienteDTO;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/pacientes")
public class PacienteController {
@PostMapping()
public void registrarPaciente(@RequestBody PacienteDTO datosPaciente) {
System.out.println(datosPaciente);
}
}
package med.voll.api.dto;
public record PacienteDTO(
String nombre,
String email,
String telefono,
String documentoIdentidad,
DireccionDTO direccion) {
}
package med.voll.api.dto;
public record DireccionDTO(
String calle,
String numero,
String comuna) {
}