Interface CarOrderHistoryService
- All Known Subinterfaces:
MultichannelOrderHistoryService
- All Known Implementing Classes:
DefaultCarOrderHistoryService,DefaultMultichannelOrderHistoryService
public interface CarOrderHistoryService
Service to provide Order information for a given Customer's activity
-
Method Summary
Modifier and TypeMethodDescriptionreadOrderDetails(String businessDayDate, String storeId, Integer transactionIndex, String customerNumber) return order history data with header, store and item data filledreadOrdersForCustomer(String customerNumber, PaginationData paginationData) read paginated order history for a customer
-
Method Details
-
readOrdersForCustomer
List<CarOrderHistoryData> readOrdersForCustomer(String customerNumber, PaginationData paginationData) read paginated order history for a customer- Parameters:
customerNumber-paginationData-- Returns:
List<CarOrderHistoryData>
-
readOrderDetails
CarOrderHistoryData readOrderDetails(String businessDayDate, String storeId, Integer transactionIndex, String customerNumber) return order history data with header, store and item data filled- Parameters:
businessDayDate-storeId-transactionIndex-customerNumber-- Returns:
-