Method: MITS::Document#companies
- Defined in:
- lib/mits/document.rb
#companies ⇒ Object
23 24 25 26 27 28 29 |
# File 'lib/mits/document.rb', line 23 def companies return enum_for(:companies) unless block_given? physical_property.within(:Management).within(:PropertyContacts).each do |tag| yield mapper.company(tag, company_entity) end end |