Class: DetailAccount

Inherits:
Account
  • Object
show all
Defined in:
app/models/detail_account.rb

Instance Method Summary collapse

Methods inherited from Account

#balance_at, #balance_before, #current_balance, owned_by

Instance Method Details

#transfer(amount) ⇒ Object



7
8
9
# File 'app/models/detail_account.rb', line 7

def transfer(amount)
  BlankTransaction.new amount, self
end