public static List<insumos> cosultainsu()
        {

            List<insumos> _lista = new List<insumos>();



            MySqlCommand _comando = new MySqlCommand(String.Format(

           "SELECT * FROM Insumos"), BdComun.ObtenerConexion());

            MySqlDataReader _reader = _comando.ExecuteReader();

            while (_reader.Read())
            {

                insumos pCliente = new insumos();

                pCliente.Id = _reader.GetInt32(0);
                pCliente.precio_carton = _reader.GetString(1);
                pCliente.precio_ganchos = _reader.GetString(2);
                pCliente.precio_pintura = _reader.GetString(3);
                _lista.Add(pCliente);

            }



            return _lista;


        }
        public static int Agregar(insumos ventas)
        {

            int retorno = 0;

            MySqlCommand comando = new MySqlCommand(string.Format("Insert into Insumos (precio_carton,precio_gancho,precio_pintura) values ('{0}','{1}','{2}')",
               ventas.precio_carton, ventas.precio_ganchos, ventas.precio_pintura), BdComun.ObtenerConexion());
            retorno = comando.ExecuteNonQuery();
            return retorno;
        }