Package com.jpoweredcart.common.entity.catalog

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


  public static class Store implements RowMapper<InformationToStore>{

    @Override
    public InformationToStore mapRow(ResultSet rs, int rowNum)
        throws SQLException {
      InformationToStore infoStore = new InformationToStore();
      infoStore.setInformationId(rs.getInt("information_id"));
      infoStore.setStoreId(rs.getInt("store_id"));
      return infoStore;
    }
View Full Code Here

TOP

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

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.