Tesis
1.0.0
Loading...
Searching...
No Matches
CarritoItem.java
Go to the documentation of this file.
1
package
com.example.food_front.models;
2
3
public
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
12
public
Producto
getProducto
() {
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
com.example.food_front.models.CarritoItem.getCantidad
int getCantidad()
Definition
CarritoItem.java:16
com.example.food_front.models.CarritoItem.setCantidad
void setCantidad(int cantidad)
Definition
CarritoItem.java:20
com.example.food_front.models.CarritoItem.getProducto
Producto getProducto()
Definition
CarritoItem.java:12
com.example.food_front.models.CarritoItem.CarritoItem
CarritoItem(Producto producto, int cantidad)
Definition
CarritoItem.java:7
com.example.food_front.models.Producto
Definition
Producto.java:3
mobile2025
app
src
main
java
com
example
food_front
models
CarritoItem.java
Generated by
1.14.0