Interface CreateQuoteFromCartStrategy
-
- All Known Implementing Classes:
DefaultCreateQuoteFromCartStrategy
public interface CreateQuoteFromCartStrategyStrategy for creating aQuoteModelinstance based on a givenCartModelinstance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuoteModelcreateQuoteFromCart(CartModel cart)Creates a newQuoteModelbased on the givenCartModel.
-
-
-
Method Detail
-
createQuoteFromCart
QuoteModel createQuoteFromCart(CartModel cart)
Creates a newQuoteModelbased on the givenCartModel.- Parameters:
cart- theCartModelbase on which to create a newQuoteModel- Returns:
- the new
QuoteModel
-
-