Skip to content

Instantly share code, notes, and snippets.

@denispeyrusaubes
Created April 27, 2018 05:56
Show Gist options
  • Save denispeyrusaubes/02f052c4b5cc7676efd8a78414e4b1f0 to your computer and use it in GitHub Desktop.
Save denispeyrusaubes/02f052c4b5cc7676efd8a78414e4b1f0 to your computer and use it in GitHub Desktop.
package com.retengr.model;
/**
* Created by denis on 07/03/2018.
*/
public class Orders {
private String productName;
private double itemCost;
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public double getItemCost() {
return itemCost;
}
public void setItemCost(double itemCost) {
this.itemCost = itemCost;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment