Example #1
0
 public Store makeStoreEntity(long storeNum, String storeName) {
   Store store = new Store();
   store.setStore_number(storeNum);
   store.setStore_name(storeName);
   return store;
 }