Advertisement
techno-

ProductoCantidad.java

Nov 24th, 2022
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1. package e1;
  2.  
  3. public class ProductoCantidad {
  4.     private Product producto;
  5.     private int cantidad;
  6.  
  7.     public ProductoCantidad(Product producto, int cantidad) {
  8.         this.producto = producto;
  9.         this.cantidad = cantidad;
  10.     }
  11.  
  12.     public Product getProducto() {
  13.         return producto;
  14.     }
  15.  
  16.     public void setProducto(Product producto) {
  17.         this.producto = producto;
  18.     }
  19.  
  20.     public int getCantidad() {
  21.         return cantidad;
  22.     }
  23.  
  24.     public void setCantidad(int cantidad) {
  25.         this.cantidad = cantidad;
  26.     }
  27. }
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement