public void Actualizar() { string SQL = "UPDATE Pacientes SET Nombre = '" + NombrePaciente + "', Apellido = '" + Apellido + "', FechaNacimiento = '" + FechaNacimiento + "', Sexo = '" + Sexo + "', Domicilio = '" + Domicilio + "', Telefono = '" + Telefono + "' WHERE Nombre = '" + NombrePaciente + "' AND Apellido = '" + Apellido + "';"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros de pacientes."); } } catch (Exception error) { throw error; } }
public void Eliminar() { string SQL = "DELETE FROM Pacientes WHERE Nombre = '" + NombrePaciente + "' AND Apellido = '" + Apellido + "';"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros de pacientes."); } } catch (Exception error) { throw error; } }
public void Eliminar() { string SQL = "DELETE FROM Servicios WHERE NombreServicio = '" + NombreServicio + "';"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros."); } } catch (Exception error) { throw error; } }
//metodos public void Guardar() { string SQL = "insert into Citas (NombrePaciente, Fecha) VALUES ('" + NombrePaciente + "', '" + Fecha + "');"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros de citas."); } } catch (Exception error) { throw error; } }
public void Actualizar() { string SQL = "UPDATE Citas SET NombrePaciente = '" + NombrePaciente + "', Fecha = '" + Fecha + "' WHERE NombrePaciente = '" + NombrePaciente + "';"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros de citas."); } } catch (Exception error) { throw error; } }
public void Actualizar() { string SQL = "UPDATE Servicios SET NombreServicio = '" + NombreServicio + "', Descripcion = '" + Descripcion + "', Precio = '" + Precio + "' WHERE NombreServicio = '" + NombreServicio + "';"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros."); } } catch (Exception error) { throw error; } }
//metodos public void Guardar() { string SQL = "insert into Servicios (NombreServicio, Descripcion, Precio) VALUES ('" + NombreServicio + "','" + Descripcion + "','" + Precio + "');"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros"); } } catch (Exception error) { throw error; } }
//metodos public void Guardar() { string SQL = "insert into Pacientes (Nombre, Apellido, FechaNacimiento, Sexo, Domicilio, Telefono) VALUES ('" + NombrePaciente + "', '" + Apellido + "', '" + FechaNacimiento + "', '" + Sexo + "', '" + Domicilio + "', '" + Telefono + "');"; AccesoBaseDatos bd = new AccesoBaseDatos(); try { if (bd.EjecutaComando(SQL) == 0) { throw new Exception("No se afectaron registros de pacientes."); } } catch (Exception error) { throw error; } }