public static void actualizarEsterilizacion(int idEsterilizacion, int loteid) { string CommandText = string.Format("UPDATE insumosbolivia.esterilizacion SET RegistroLote_idRegistroLote='{0}'" + "WHERE idEsterilizacion='{1}'", loteid, idEsterilizacion); Console.WriteLine(CommandText); ServidorDB.insertar(CommandText); }
public bool guardar() { string CommandText = string.Format("Insert into registrolote(codigoRegistroLote," + "versionControl, lote, fecha) " + "values ('{0}','{1}','{2}','{3}');", this.codigoRegistroLote, this.versionControl, this.lote, this.fecha); Console.WriteLine(CommandText); return(ServidorDB.insertar(CommandText)); }
public bool guardar() { string CommandText = string.Format("Insert into RegistroEsterilizacion(fechahora, " + "temperatura, presion, etapa," + "Esterilizacion_idEsterilizacion) " + "values ('{0}','{1}','{2}','{3}','{4}');", this.fechaHora.Hour + ":" + this.fechaHora.Minute + ":" + this.fechaHora.Second, this.temperatura, this.presion, this.etapa, this.esterilizacionid); Console.WriteLine(CommandText); return(ServidorDB.insertar(CommandText)); }
public bool guardar() { string CommandText = string.Format("Insert into Esterilizacion(noEsterilizacion, " + "tipoPresentacion, presion, temperatura, horaInicio, horaFinal, " + "tiempoCalentamiento, tiempoEsterilizado, Observacion) " + "values ('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}');", this.noEsterilizacion, (this.tipoPresentacion == null ? "0" : this.tipoPresentacion), this.presion, this.temperatura, this.horaInicio.ToString(), this.horaFinal.ToString(), this.tiempoCalentamiento, this.tiempoEsterilizado, (this.observacion == null ? "N/A" : this.observacion)); Console.WriteLine(CommandText); return(ServidorDB.insertar(CommandText)); }