Package com.jpoweredcart.common.entity.catalog

Examples of com.jpoweredcart.common.entity.catalog.CategoryToStore


  public static class Store implements RowMapper<CategoryToStore>{

    @Override
    public CategoryToStore mapRow(ResultSet rs, int rowNum)
        throws SQLException {
      CategoryToStore catStore = new CategoryToStore();
      catStore.setCategoryId(rs.getInt("category_id"));
      catStore.setStoreId(rs.getInt("store_id"));
      return catStore;
    }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.common.entity.catalog.CategoryToStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.