Interface DeliveryTimeSlotService
-
- All Known Implementing Classes:
DefaultChineseDeliveryTimeSlotService
public interface DeliveryTimeSlotServiceProviding some services about DeliveryTimeSlot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<DeliveryTimeSlotModel>getAllDeliveryTimeSlots()Getting all of the DeliveryTimeSlotsDeliveryTimeSlotModelgetDeliveryTimeSlotByCode(java.lang.String code)Getting the DeliveryTimeSlot by codevoidsetDeliveryTimeSlot(CartModel cartModel, java.lang.String deliveryTimeSlot)Setting the DeliveryTimeSlot into the cartmodel
-
-
-
Method Detail
-
getAllDeliveryTimeSlots
java.util.List<DeliveryTimeSlotModel> getAllDeliveryTimeSlots()
Getting all of the DeliveryTimeSlots- Returns:
- List
-
getDeliveryTimeSlotByCode
DeliveryTimeSlotModel getDeliveryTimeSlotByCode(java.lang.String code)
Getting the DeliveryTimeSlot by code- Parameters:
code- the code of the DeliveryTimeSlotModel- Returns:
- delivery timeslot model
-
setDeliveryTimeSlot
void setDeliveryTimeSlot(CartModel cartModel, java.lang.String deliveryTimeSlot)
Setting the DeliveryTimeSlot into the cartmodel- Parameters:
cartModel- cart modeldeliveryTimeSlot- delivery timeslot
-
-