Esempio n. 1
0
 public ItemVenta(int id, int idVenta, int idproducto, int cantidad, float precio)
 {
     this.id = id;
     this.idVenta = idVenta;
     this.idproducto = idproducto;
     this.cantidad = cantidad;
     this.precio = precio;
     this.producto = Productos.getInstance().productoAt(IdProducto);
 }
Esempio n. 2
0
 public bool equals(Producto p)
 {
     if ((p.ID == ID) && (p.Codigo == Codigo) && (p.Detalle == Detalle) && (p.Precio == Precio)
        && (p.Stock == Stock))
         return true;
     return false;
 }