diff --git a/src/Features/BookingScreen/BookingData/BookingData.js b/src/Features/BookingScreen/BookingData/BookingData.js index 9f7d995..e3f29b2 100644 --- a/src/Features/BookingScreen/BookingData/BookingData.js +++ b/src/Features/BookingScreen/BookingData/BookingData.js @@ -1460,6 +1460,23 @@ export const CustomerOrderList = createAsyncThunk( } ); +// post /ProductSearch +export const PostProductSearch = createAsyncThunk( + 'multipleSearch/ProductSearch', + async (postData) => { + return await axiosRetailInstanceData.post(`/ProductSearch`, postData); + } +); +// get /GetProductSearch +export const getmultipleSearch = createAsyncThunk( + 'multipleSearch/GetProductSearch', + async (data) => { + return await axiosRetailInstanceData.get( + `/GetProductSearch?compId=${data?.CompId}&branchId=${data?.BranchId}&appId=${data?.AppId}` + ); + } +); + const initialState = {