Package com.alexnevsky.hotel.model

Examples of com.alexnevsky.hotel.model.Customer


   * @return The mapped Customer from the current row of the given ResultSet.
   * @throws SQLException
   *             If something fails at database level.
   */
  private static Customer mapCustomer(ResultSet resultSet) throws SQLException {
    return new Customer(resultSet.getLong("id"), resultSet.getString("firstName"), resultSet.getString("lastName"),
        resultSet.getString("email"), resultSet.getString("phone"), resultSet.getString("address"),
        resultSet.getLong("CreditCard_number"));
  }
View Full Code Here

TOP

Related Classes of com.alexnevsky.hotel.model.Customer

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.