-
Notifications
You must be signed in to change notification settings - Fork 2
/
SalesInfo.java
51 lines (37 loc) · 1.03 KB
/
SalesInfo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.example.lewan.myapplication;
public class SalesInfo {
private String nameProduct;
private String nameMagaz;
private String category;
private String price;
public SalesInfo(String nameProduct, String category, String nameMagaz, String price) {
this.nameProduct = nameProduct;
this.nameMagaz = nameMagaz;
this.category = category;
this.price = price;
}
public String getNameProduct() {
return this.nameProduct;
}
public void setNameProduct(String nameProduct) {
this.nameProduct = nameProduct;
}
public String getNameMagaz() {
return nameMagaz;
}
public String getCategory() {
return category;
}
public String getPrice() {
return price;
}
public void setCategory(String category) {
this.category = category;
}
public void setNameMagaz(String nameMagaz) {
this.nameMagaz = nameMagaz;
}
public void setPrice(String price) {
this.price = price;
}
}