Interface WarehousingBaseStoreFacade
- All Known Implementing Classes:
DefaultWarehousingBaseStoreFacade
public interface WarehousingBaseStoreFacade
Warehousing facade exposing CRUD operations on
BaseStoreModel-
Method Summary
Modifier and TypeMethodDescriptiongetPointsOfServiceForBaseStoreId(PageableData pageableData, String uid) API to get allPointOfServiceDatain the system, for the givenBaseStoreModel.UIDgetWarehousesForBaseStoreId(PageableData pageableData, String uid) API to get allWarehouseModelin the system, for the givenBaseStoreModel.UID
-
Method Details
-
getWarehousesForBaseStoreId
API to get allWarehouseModelin the system, for the givenBaseStoreModel.UID- Parameters:
pageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting infouid- the uid of the BaseStore for which warehouses are being retrieved- Returns:
- searchPageData result which includes the search results of warehouses for the baseStore, the pagination data, and the available sort options.
-
getPointsOfServiceForBaseStoreId
SearchPageData<PointOfServiceData> getPointsOfServiceForBaseStoreId(PageableData pageableData, String uid) API to get allPointOfServiceDatain the system, for the givenBaseStoreModel.UID- Parameters:
pageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting infouid- the uid of the BaseStore for which warehouses are being retrieved- Returns:
- searchPageData result which includes the search results of points of service for the baseStore, the pagination data, and the available sort options.
-