public static void changepwd(string newpw, Usuario us) { var sql = string.Format("update appuser set password = '******' where iduser = {1};", newpw, us.userID); ConnectionDB.ExecuteNonQuery(sql); }
public static void eliminar(int id) { string nonQuery = String.Format($"DELETE FROM appuser WHERE idUser = {id}"); ConnectionDB.ExecuteNonQuery(nonQuery); }
public static void eliminar(int id) { string nonQuery = String.Format($"DELETE FROM address WHERE idAddress = {id};"); ConnectionDB.ExecuteNonQuery(nonQuery); }
public static void deleteUser(Usuario us) { string sql = string.Format("DELETE FROM APPUSER WHERE idUser = {0}", us.userID); ConnectionDB.ExecuteNonQuery(sql); }
public static void deletepro(Product pro) { var sql = string.Format("DELETE FROM PRODUCT WHERE idProduct = {0}", pro.idproduct); ConnectionDB.ExecuteNonQuery(sql); }
public static void eliminarDireccion(Address ad) { string sql = string.Format("DELETE FROM ADDRESS WHERE idAddress = {0}", ad.addressID); ConnectionDB.ExecuteNonQuery(sql); }
public static void eliminarOrden(Order idord) { var sql = string.Format("DELETE FROM APPORDER WHERE idorder = {0};", idord.idorder); ConnectionDB.ExecuteNonQuery(sql); }
//Sell Button (Sell Tab) private void button1_Click(object sender, EventArgs e) { Product p = new Product(); ProductNonQuery.getLista().ForEach(product => { if (comboBox1.SelectedValue.Equals(product.idProducto)) { p = product; } }); if (p.stock_actual == 0) { MessageBox.Show("Ya no hay " + p.nombre + " disponible", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } else if (Convert.ToDecimal(textBox1.Text) > p.stock_actual) { MessageBox.Show("Solamente hay: " + p.stock_actual + " de " + p.nombre + ", no se pueden vender " + textBox1.Text, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } else if (p.stock_actual != 0) { try { ConnectionDB.ExecuteNonQuery($"UPDATE GANANCIA SET cantidad_vendida = (cantidad_vendida)+'{textBox1.Text}' WHERE idProducto = '{comboBox1.SelectedValue}';"); MessageBox.Show("Se vendio " + textBox1.Text + " de " + p.nombre); } catch (Exception exception) { MessageBox.Show("Ha ocurrido un error actualizando"); } //Agregando a t3 try { decimal ganancia; ganancia = (Convert.ToDecimal(textBox1.Text) * p.precio_unidad_venta) - (Convert.ToDecimal(textBox1.Text) * p.precio_unidad_compra); ConnectionDB.ExecuteNonQuery($"INSERT INTO GANANCIADIAARTICULO (nombre, cantidad_vendida, ganancia) VALUES('{p.nombre}', '{textBox1.Text}', '{ganancia}');"); } catch (Exception exception) { MessageBox.Show("Ha ocurrido un error actualizando T2 "); } try { ConnectionDB.ExecuteNonQuery($"UPDATE GANANCIA SET stock_actual = stock_actual-{textBox1.Text} WHERE idProducto = {comboBox1.SelectedValue};"); } catch (Exception exception) { MessageBox.Show("Ha ocurrido un error actualizando"); } try { ConnectionDB.ExecuteNonQuery($"UPDATE GANANCIA SET precio_venta_acumulado = (precio_unidad_venta * cantidad_vendida) WHERE idProducto = {comboBox1.SelectedValue};"); } catch (Exception exception) { MessageBox.Show("Ha ocurrido un error actualizando"); } try { ConnectionDB.ExecuteNonQuery($"UPDATE GANANCIA SET ganancia = (precio_unidad_venta*cantidad_vendida)-(precio_unidad_compra*cantidad_vendida) WHERE idProducto = {comboBox1.SelectedValue};"); } catch (Exception exception) { MessageBox.Show("Ha ocurrido un error actualizando"); } } }
public static void deletebiz(Negocio neg) { var sql = string.Format("DELETE FROM BUSINESS WHERE idBusiness = {0}", neg.idneg); ConnectionDB.ExecuteNonQuery(sql); }