private void btn_administrar_transacciones_Click_1(object sender, EventArgs e) { Random al = new Random(); int b = al.Next(1, 2); Informacion_Clientes nuevo = new Informacion_Clientes(3); nuevo.Show(); }
private void btn_consultar_Click(object sender, EventArgs e) { Informacion_Clientes nuevo = new Informacion_Clientes(1); nuevo.Show(); }
private void btn_modificar_CLICK(object sender, EventArgs e) { Informacion_Clientes nuevo = new Informacion_Clientes(3); nuevo.Show(); }
private void btn_registar_Click(object sender, EventArgs e) { Informacion_Clientes nuevo = new Informacion_Clientes(2, user); nuevo.Show(); }