AddBusinessM.java
437 Bytes
package etelligens.com.foodsafety.model;
public class AddBusinessM {
private int storeID;
private String store_Name;
public int getStoreID() {
return storeID;
}
public void setStoreID(int storeID) {
this.storeID = storeID;
}
public String getStore_Name() {
return store_Name;
}
public void setStore_Name(String store_Name) {
this.store_Name = store_Name;
}
}