Package de.xanders.data.customer.dao

Examples of de.xanders.data.customer.dao.CreditCard


    /**
     * @see CreditCardService#getCreditCardById(java.lang.Long)
     */
    protected CreditCardVO handleGetCreditCardById(java.lang.Long creditCardId)
        throws java.lang.Exception {
      CreditCard creditCard = this.getCreditCardDao().load(creditCardId);
      return this.getCreditCardDao().toCreditCardVO(creditCard);
    }
View Full Code Here


    /**
     * @see CreditCardService#saveCreditCard(CreditCardVO)
     */
    protected CreditCardVO handleSaveCreditCard(CreditCardVO creditCardVO)
        throws java.lang.Exception {
      CreditCard creditCard = this.getCreditCardDao().creditCardVOToEntity(creditCardVO);
        if (creditCard.getCreditCardId() == null) {
            creditCard = this.getCreditCardDao().create(creditCard);
            creditCardVO.setCreditCardId(creditCard.getCreditCardId());
        }
        else {
            this.getCreditCardDao().update(creditCard);           
        }  
        return creditCardVO;
View Full Code Here

TOP

Related Classes of de.xanders.data.customer.dao.CreditCard

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.