# frozen_string_literal: true module Searches # ProductSearch class ProductSearch < BaseSearch def call @scope_filter.by_name .by_company .by_category .order_by_available_quantity .order_by_price .order_by_bulk_price .query_result end end end