Created
April 24, 2012 19:48
-
-
Save bastos/2483089 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Debits and credits are a system of notation used in bookkeeping to determine how to record any financial transaction. | |
class Person | |
attr_accessor :bookkeeping | |
end | |
class BookKeeping | |
attr_accessor :transactions | |
end | |
class Transaction | |
end | |
class Debit < Transaction | |
end | |
class Credit < Transaction | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment