Created
April 27, 2018 05:56
-
-
Save denispeyrusaubes/02f052c4b5cc7676efd8a78414e4b1f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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