//__________________________________________________________________________ // Insertar Paciente public static int InsertaTurnero(TurneroDto turno) { try { return(TurneroDb.InsertTurno(turno)); } catch (Exception e) { throw e; } }
//__________________________________________________________________________ // Insertar Paciente public static int InsertaTurnero(ref TurneroDto turno) { return(TurneroDb.InsertTurno(ref turno)); }