public static int agregar(tipo_pago Tipo_pago) { int retornar = 0; using (SqlConnection Conn = conexion.obtenerConexion()) { SqlCommand Comando = new SqlCommand(string.Format("insert into tipo_pago values('{0}','{1}','{2}');", Tipo_pago.codigo, Tipo_pago.nombre, Tipo_pago.descripcion), Conn); retornar = Comando.ExecuteNonQuery(); } return(retornar); }
public static int agregar(tipo_pago Tipo_pago) { int retornar = 0; using (SqlConnection Conn = conexion.obtenerConexion()) { SqlCommand Comando = new SqlCommand(string.Format("insert into tipo_pago values('{0}','{1}','{2}');", Tipo_pago.codigo, Tipo_pago.nombre, Tipo_pago.descripcion), Conn); retornar = Comando.ExecuteNonQuery(); } return retornar; }
private void button1_Click(object sender, EventArgs e) { tipo_pago Tipo_pago = new tipo_pago(textBox1.Text, textBox2.Text, textBox3.Text); int resulado = tipo_pago_data.agregar(Tipo_pago); if (resulado > 0) { MessageBox.Show("datos guardados", "datos guardados", MessageBoxButtons.OK, MessageBoxIcon.Question); } else { MessageBox.Show("datos NO guardados", "datos NO guardados", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
public static List <tipo_pago> BuscarTipoPago(String atributo, String valorAtributo) { List <tipo_pago> Lista = new List <tipo_pago>(); using (SqlConnection con = conexion.obtenerConexion()) { SqlCommand comando = new SqlCommand(string.Format("select * from tipo_pago where {0} like '%{1}%' ", atributo, valorAtributo), con); SqlDataReader reader = comando.ExecuteReader(); while (reader.Read()) { tipo_pago TipoPago = new tipo_pago(); TipoPago.codigo = reader.GetString(0); TipoPago.nombre = reader.GetString(1); TipoPago.descripcion = reader.GetString(2); Lista.Add(TipoPago); } con.Close(); return(Lista); } }
public static List<tipo_pago> BuscarTipoPago(String atributo, String valorAtributo) { List<tipo_pago> Lista = new List<tipo_pago>(); using (SqlConnection con = conexion.obtenerConexion()) { SqlCommand comando = new SqlCommand(string.Format("select * from tipo_pago where {0} like '%{1}%' ", atributo, valorAtributo), con); SqlDataReader reader = comando.ExecuteReader(); while (reader.Read()) { tipo_pago TipoPago = new tipo_pago(); TipoPago.codigo = reader.GetString(0); TipoPago.nombre = reader.GetString(1); TipoPago.descripcion = reader.GetString(2); Lista.Add(TipoPago); } con.Close(); return Lista; } }