Tesis 1.0.0
Loading...
Searching...
No Matches
CarritoItem.java
Go to the documentation of this file.
1package com.example.food_front.models;
2
3public class CarritoItem {
4 private Producto producto;
5 private int cantidad;
6
7 public CarritoItem(Producto producto, int cantidad) {
8 this.producto = producto;
9 this.cantidad = cantidad;
10 }
11
13 return producto;
14 }
15
16 public int getCantidad() {
17 return cantidad;
18 }
19
20 public void setCantidad(int cantidad) {
21 this.cantidad = cantidad;
22 }
23}
24
CarritoItem(Producto producto, int cantidad)