| 1 2 3 4 5 6 7 8 9 10 11 | 2x 1x | import { REQUEST_SERVICE_INDICATORS, SEARCH_SERVICE_INDICATORS } from '../actionTypes';
import api from '../Api';
export function fetchServiceIndicators(requestParams, Api = api) {
return { type: REQUEST_SERVICE_INDICATORS, requestParams, Api };
}
export function searchServiceIndicators(requestParams) {
return { type: SEARCH_SERVICE_INDICATORS, requestParams };
}
|