Sha256: cbe83580eb79cbec15ae9ecabc699e373a1f8778d991da45828e078fd0700093
Contents?: true
Size: 872 Bytes
Versions: 32
Compression:
Stored size: 872 Bytes
Contents
module GoTransverseTractApi module Service class ServicePriceRange class << self # # @param {Long} eid # @param {Hash} options # def find_by_eid eid, options={} return nil unless eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({eid: eid}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {Long} service_price_eid # @param {Hash} options # def find_by_service_price_eid service_price_eid, options={} return nil unless service_price_eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({service_price_eid: service_price_eid}, options) GoTransverseTractApi.get_response_for(self, params) end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems