Package com.jpoweredcart.common.entity.sale

Examples of com.jpoweredcart.common.entity.sale.VoucherHistory


    return getJdbcOperations().query(query.getSql(), query.getParameters(),
      new VoucherHistoryRowMapper(){
      @Override
      public VoucherHistory mapRow(ResultSet rs, int rowNum)
          throws SQLException {
        VoucherHistory vh = super.mapRow(rs, rowNum);
        vh.setCustomer(rs.getString("firstname")+" "+rs.getString("lastname"));
        return vh;
      }
    });
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.common.entity.sale.VoucherHistory

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.