Class: Debit
- Inherits:
-
Object
- Object
- Debit
- Defined in:
- lib/bill-nye/debit.rb
Instance Method Summary collapse
-
#initialize(_pDate, _type, _uDate, _source, _amount, _balance) ⇒ Debit
constructor
A new instance of Debit.
Constructor Details
#initialize(_pDate, _type, _uDate, _source, _amount, _balance) ⇒ Debit
Returns a new instance of Debit.
4 5 6 7 8 9 10 11 |
# File 'lib/bill-nye/debit.rb', line 4 def initialize(_pDate, _type, _uDate, _source, _amount, _balance) @pDate = _pDate @type = _type @uDate = _uDate @source = _source @amount = _amount @balance = _balance end |