Method: Unit::Types::BusinessContact#initialize

Defined in:
lib/unit/types/business_contact.rb

#initialize(full_name, email, phone) ⇒ BusinessContact

Returns a new instance of BusinessContact.

Parameters:



14
15
16
17
18
# File 'lib/unit/types/business_contact.rb', line 14

def initialize(full_name, email, phone)
  @full_name = full_name
  @email = email
  @phone = phone
end