module Toolhound
require “nearmiss-ruby/util”
require “toolhound-ruby/incident”
require “bim360/version” unless defined?(Nearmiss::VERSION) require 'bim360/response/raise_error'
INNER JOIN tblInventoryID AS iid ON iid.intInventoryIdID = rc.intInventoryIDID INNER JOIN tblInventory AS iv ON iid.intInventoryID = iv.intInventoryID INNER JOIN tblInventoryText AS ivt ON iv.intInventoryID = ivt.intInventoryID
INNER JOIN tblInventoryID AS iid ON iid.intInventoryIdID = rc.intInventoryIDID INNER JOIN tblInventory AS iv ON iid.intInventoryID = iv.intInventoryID INNER JOIN tblInventoryText AS ivt ON iv.intInventoryID = ivt.intInventoryID
EXECUTE HumanResources.uspGetEmployees @FirstName = N'Pilar', @LastName = N'Ackerman';
EXECUTE HumanResources.uspGetEmployees @FirstName = N'Pilar', @LastName = N'Ackerman';
EXECUTE HumanResources.uspGetEmployees @FirstName = N'Pilar', @LastName = N'Ackerman';
Constants
- VERSION
Public Class Methods
API client based on configured options {Configurable}
@return [Toolhound::Client] API wrapper
# File lib/toolhound-ruby.rb, line 49 def client @client = Toolhound::Client.new(options) unless defined?(@client) && @client.same_options?(options) @client end
@private
# File lib/toolhound-ruby.rb, line 55 def respond_to_missing?(method_name, include_private=false) client.respond_to?(method_name, include_private) end
Private Class Methods
# File lib/toolhound-ruby.rb, line 61 def method_missing(method_name, *args, &block) return super unless client.respond_to?(method_name) client.send(method_name, *args, &block) end