Skip to content
Snippets Groups Projects
Commit a697b4fc authored by Joel Andrew Wach's avatar Joel Andrew Wach
Browse files

test

parent 32736939
No related branches found
No related tags found
No related merge requests found
......@@ -2,4 +2,56 @@ package assignment2;
public class Refreshments {
private String code;
private String SR;
private String name;
private double cost;
Refreshments( String code, String SR, String name, double cost){
this.code = code;
this.SR = SR;
this.name = name;
this.cost = cost;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getSR() {
return SR;
}
public void setSR(String sR) {
SR = sR;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getCost() {
return cost;
}
public void setCost(double cost) {
this.cost = cost;
}
}
\ No newline at end of file
package assignment2;
public class Address {
public class address {
//
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment