public void UpdateRastreadorDisponivel(string codRastreador) { try { string comando = "update tb_rastreador set status = 'Disponivel' where cod_Rastreador = ?;"; Cl_MysqlConect cl_MysqlConect = new Cl_MysqlConect(); cl_MysqlConect.UpdateStatus(comando, codRastreador); comando = "update tb_periodo set instanteFinal = current_timestamp() where cod_Rastreador = ?"; cl_MysqlConect.UpdateStatus(comando, codRastreador); } catch (Exception erro) { throw erro; } }
public void UpdateRastreadorEmUso() { try { string comando = "update tb_rastreador set status = 'Em Uso' where cod_Rastreador = ?;"; Cl_MysqlConect cl_MysqlConect = new Cl_MysqlConect(); cl_MysqlConect.UpdateStatus(comando, CodRastreador); } catch (Exception erro) { throw erro; } }