Interface CustomerWishListDAO

All Superinterfaces:
DAOInterface
All Known Implementing Classes:
CustomerWishListDAOHibernate

public interface CustomerWishListDAO extends DAOInterface
Interface for a DAO to manage the sscCustomerWishList table of the database.
Author:
Jason McWilliams
  • Method Details

    • getCustomerWishList

      CustomerWishList getCustomerWishList()
    • setCustomerWishList

      void setCustomerWishList(CustomerWishList customerWishList)
    • insertCustomerWishList

      void insertCustomerWishList() throws Exception
      Throws:
      Exception
    • insertCustomerWishList

      void insertCustomerWishList(boolean commit) throws Exception
      Throws:
      Exception
    • updateCustomerWishList

      void updateCustomerWishList() throws Exception
      Throws:
      Exception
    • updateCustomerWishList

      void updateCustomerWishList(boolean commit) throws Exception
      Throws:
      Exception
    • loadCustomerWishListFromID

      void loadCustomerWishListFromID() throws Exception
      Throws:
      Exception
    • deleteCustomerWishList

      void deleteCustomerWishList() throws Exception
      Throws:
      Exception
    • deleteCustomerWishList

      void deleteCustomerWishList(boolean commit) throws Exception
      Throws:
      Exception