Skip to content

Instantly share code, notes, and snippets.

@kubawieczorek
Created November 23, 2019 13:34
Show Gist options
  • Save kubawieczorek/28e14891a640ed3f13257f9dba7b1fbe to your computer and use it in GitHub Desktop.
Save kubawieczorek/28e14891a640ed3f13257f9dba7b1fbe to your computer and use it in GitHub Desktop.
public class Car {
private String type;
private BigDecimal price;
public Car(String type, BigDecimal price) {
this.type = type;
this.price = price;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment