Skip to content

Instantly share code, notes, and snippets.

@thiagoramos23
Created July 19, 2015 03:26
Show Gist options
  • Select an option

  • Save thiagoramos23/73890ae3c76272e421f4 to your computer and use it in GitHub Desktop.

Select an option

Save thiagoramos23/73890ae3c76272e421f4 to your computer and use it in GitHub Desktop.
Bank Account
class BankAccount < ActiveRecord : :Base
. . .
def transfer_to( account , amount )
self . debt( amount )
account . credit( amount )
end
. . .
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment