Interface CommerceOrderDao
-
- All Superinterfaces:
GenericDao<OrderModel>
- All Known Implementing Classes:
DefaultCommerceOrderDao
public interface CommerceOrderDao extends GenericDao<OrderModel>
Commerce DAO interface for handlingOrderModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OrderModel
findOrderByQuote(QuoteModel quote)
Retrieves an order associated to a quote if any, else returns null
-
-
-
Method Detail
-
findOrderByQuote
OrderModel findOrderByQuote(QuoteModel quote)
Retrieves an order associated to a quote if any, else returns null- Parameters:
quote
- quote model- Returns:
- order
-
-