getAll method

Implementation

Future<ResponseListDTO<ProductPriceGroupDTO>> getAll(
    {StoreQuery? query}) async {
  return await _repository!.getAll(
    query: query,
  );
}