コード例 #1
0
 public async Task <IActionResult> Post(Paciente paciente)
 {
     _repository.InserirPaciente(paciente);
     return(Ok("Paciente criado com sucesso"));
 }