public override bool Equals(Object obj)
        {
            if (!(obj is ProductoEN))
            {
                return(false);
            }

            ProductoEN p = (ProductoEN)obj;

            return(id == p.id);
        }
 public ProductoEN(ProductoEN c)
 {
     inicializar(c.Id, c.Nombre, c.Precio, c.CantidadStock);
 }