/**
 * 
 */
public class Item {
    private Integer ID;
    private String name;
    private float price;
    private String category;

    /**
     * 
     */
    public Item(Integer ID, String name, float price, String category) {
        this.ID = ID;
        this.name = name;
        this.price = price;
        this.category = category;
    }

    //Self Explanatory functions that simply return the requested numbers/strings
    public Integer getID() { return ID; }
    public String getName() { return name; }
    public float getPrice() { return price; }
    public String getCategory() { return category; }
}
