예제 #1
0
파일: turno.php 프로젝트: jicorrea/tplabIV
 public function GuardarTurno()
 {
     $var = medico::TraerUnTurno($this->id_turno);
     if (empty($var)) {
         $this->InsertarTurno();
     } else {
         $this->Modificarturno();
     }
 }