//__________________________________________________________________________ // Update de Turnos (Others) public static void UpdateTurnero(TurneroDto turno) { try { TurneroDb.UpdateTurno(turno); } catch (Exception e) { throw e; } }
//__________________________________________________________________________ // Update de Turnos (Others) public static void UpdateTurnero(ref TurneroDto turno) { TurneroDb.UpdateTurno(ref turno); }