Class: Transfer
- Inherits:
-
ActiveRecordShared
- Object
- ActiveRecord::Base
- ActiveRecordShared
- Transfer
- Defined in:
- app/models/transfer.rb
Overview
requires
* aliquot_id * from_organization_id * to_organization_id
Instance Method Summary collapse
-
#to(organization) ⇒ Object
Associate the given transfer “to” an #Organization.
Instance Method Details
#to(organization) ⇒ Object
Associate the given transfer “to” an #Organization
23 24 25 26 |
# File 'app/models/transfer.rb', line 23 def to(organization) self.to_organization = organization self end |