getAll method
Implementation
Future<ResponseListDTO<ProductPriceDTO>> getAll({
ProductPriceAndRatingQuery? query,
}) async {
return await _repository!.getAll(
query: query,
);
}
Future<ResponseListDTO<ProductPriceDTO>> getAll({
ProductPriceAndRatingQuery? query,
}) async {
return await _repository!.getAll(
query: query,
);
}