-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMedicine.java
More file actions
39 lines (32 loc) · 927 Bytes
/
Copy pathMedicine.java
File metadata and controls
39 lines (32 loc) · 927 Bytes
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
public class Medicine extends Service {
//Atributos
private String indication;
private int cuantity;
//Constructor
public Medicine(int idObj, String nameObj, double priceObj, String indicationObj, int cuantityObj) {
super(idObj, nameObj, priceObj);
indication = indicationObj;
cuantity = cuantityObj;
}
// Getters
public String indication() {
return indication;
}
public int cuantity() {
return cuantity;
}
//Setters
public void setIndication(String newIndication) {
indication = newIndication;
}
public void setCuantity(int newCuantity) {
cuantity = newCuantity;
}
public String toString(){
return "Id: " + id +
"\nName: " + name +
"\nPrice = " + price +
"\nIndications: " + indication +
"\nCuantity: " + cuantity;
}
}